fix[vc-util]: styleObjectToString filter invalid value (#7642)

pull/7648/head
Carl Chen 2024-06-09 09:56:45 +08:00 committed by GitHub
parent 9118d6cd42
commit f41fec26ba
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 9 additions and 3 deletions

View File

@ -121,7 +121,13 @@ export function styleToString(style: CSSStyleDeclaration) {
} }
export function styleObjectToString(style: Record<string, string>) { export function styleObjectToString(style: Record<string, string>) {
return Object.keys(style) return Object.keys(style).reduce((acc, name) => {
.map(name => `${name}: ${style[name]};`) const styleValue = style[name];
.join(''); if (typeof styleValue === 'undefined' || styleValue === null) {
return acc;
}
acc += `${name}: ${style[name]};`;
return acc;
}, '');
} }