Skip to content

Commit b11673e

Browse files
committed
Still trying to get tests to pass
1 parent 08eb29e commit b11673e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/record/mutation.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -378,8 +378,8 @@ export default class MutationBuffer {
378378
this.attributes.push(item);
379379
}
380380
if (m.attributeName === 'style' &&
381-
m.oldValue && m.oldValue.length > 25 &&
382-
value && value.length > 25
381+
m.oldValue && m.oldValue.length > 2500 &&
382+
value && value.length > 2500
383383
) {
384384
const old = document.createElement('span');
385385
old.setAttribute('style', m.oldValue);

0 commit comments

Comments
 (0)