-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: Cannot set property attributeName of #<MutationRecord> which has only a getter #1173
fix: Cannot set property attributeName of #<MutationRecord> which has only a getter #1173
Conversation
|
@@ -509,15 +509,9 @@ export default class MutationBuffer { | |||
if ( | |||
target.tagName === 'IFRAME' && | |||
m.attributeName === 'src' && | |||
!this.keepIframeSrcFn(value as string) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The other changes all look good. But what's the motivation for this change?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The other changes all look good. But what's the motivation for this change?
If the attributeName is read-only, this line seems useless, so in order to keep code and logic clean, I delete this line.
But if it is necessary to keep it, I can restore this change.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This line is important because some people may rely on this configuration. Do you know how to keep its original logic and keep mutation unchanged?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This line is important because some people may rely on this configuration. Do you know how to keep its original logic and keep mutation unchanged?
@YunFeng0817 updated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great!
rrweb-snapshot