Skip to content

Commit 232ba26

Browse files
committed
Fix editing and removing of isolation domain preferences
1 parent d7a7d72 commit 232ba26

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ui/shared.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -170,8 +170,8 @@ window.updateIsolationDomains = () => {
170170
if (!isolationDomainRulesClickEvent) {
171171
isolationDomainRules.on('click', async (event) => {
172172
event.preventDefault();
173-
const targetId = $(event.target).attr('id');
174-
const domainPattern = $(event.target).parent().attr('id');
173+
const targetId = $(event.target).parent().attr('id');
174+
const domainPattern = $(event.target).parent().parent().attr('id');
175175
if (targetId === 'editDomainRule') {
176176
isolationDomainEditRule(domainPattern);
177177
return;

0 commit comments

Comments
 (0)