Skip to content

Commit f75d548

Browse files
committed
Prettier warning fixed.
1 parent 65041f8 commit f75d548

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/apps/weblib/js-api/vizzu.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,9 @@ export default class Vizzu {
234234
this.data.set(obj.data);
235235

236236
// setting style, including CSS properties
237-
if (obj.style === null) { obj.style = { "": null }; }
237+
if (obj.style === null) {
238+
obj.style = { "": null };
239+
}
238240
const style = JSON.parse(JSON.stringify(obj.style || {}));
239241
const props = getCSSCustomPropsForElement(
240242
this.container,

0 commit comments

Comments
 (0)