Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/fluffy-poets-happen.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'preact-render-to-string': patch
---

Follow up fixes to #278
9 changes: 5 additions & 4 deletions src/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,15 @@ export function styleObjToCss(s) {
(JS_TO_CSS[prop] = prop.replace(CSS_REGEX, '-$1').toLowerCase());

let suffix = ';';
if (SUFFIX_CACHE[name]) {
suffix = 'px';
let isNumber = typeof val === 'number';
if (isNumber && SUFFIX_CACHE[name]) {
suffix = 'px;';
} else if (
typeof val === 'number' &&
isNumber &&
IS_NON_DIMENSIONAL.test(prop.toLowerCase()) === false
) {
SUFFIX_CACHE[name] = true;
suffix = 'px';
suffix = 'px;';
}
str = str + name + ':' + val + suffix;
}
Expand Down