Browse Source
Merge pull request #16876 from abpframework/escapeSelector
Remove double `escapeSelector `.
pull/16877/head
liangshiwei
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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>'); |
|
|
|
}) |
|
|
|
}); |
|
|
|
|