Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/dom/src/serialize-dialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export function serializeDialogs(ctx) {
// :modal pseudo-class matches only dialogs in the top layer (opened via showModal())
if (!elem.matches(':modal')) continue;

// Mark for renderer it will removeAttribute('open') then showModal()
// Mark for renderer - it will removeAttribute('open') then showModal()
cloneEl.setAttribute('data-percy-dialog-modal', 'true');
} catch (err) {
handleErrors(err, 'Error serializing dialog element: ', elem);
Expand Down