Skip to content

Commit

Permalink
Refactor HTMLView (#262)
Browse files Browse the repository at this point in the history
  • Loading branch information
jrlarano authored Nov 18, 2024
1 parent 1dab215 commit fa05f75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/incito-browser/incito.ts
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ function renderView(view, canLazyload: boolean) {
.trim()
.split(';')
.forEach((style) => {
const {0: key, 1: value} = style.trim().split(':');
const {0: key, 1: value} = style.trim().split(/:(.+)/);

styles[key] = value;
});
Expand Down

0 comments on commit fa05f75

Please sign in to comment.