Browse Source

Merge pull request #16876 from abpframework/escapeSelector

Remove double `escapeSelector `.
pull/16877/head
liangshiwei 3 years ago
committed by GitHub
parent
commit
15c29f24f5
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      modules/setting-management/src/Volo.Abp.SettingManagement.Web/Pages/SettingManagement/Index.js

2
modules/setting-management/src/Volo.Abp.SettingManagement.Web/Pages/SettingManagement/Index.js

@ -19,7 +19,7 @@
processData: false
}).done(function (response) {
$('#tab-content').children('.tab-pane').removeClass('show').removeClass('active');
_this.attr('data-bs-target', '#' + $.escapeSelector($.escapeSelector(id)));
_this.attr('data-bs-target', '#' + $.escapeSelector(id));
$('#tab-content').append('<div id=' + $.escapeSelector(id) + ' class="tab-pane fade active show">' + response + '</div>');
})
});

Loading…
Cancel
Save