mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-11-09 07:54:34 +08:00
Fix function call for wrappint tables [SCI-10076]
This commit is contained in:
parent
911fbf6882
commit
2b261e5c27
1 changed files with 2 additions and 2 deletions
|
|
@ -327,7 +327,7 @@ function initAccessModal() {
|
|||
});
|
||||
}
|
||||
|
||||
function wrapTables() {
|
||||
function initWrapTables() {
|
||||
const viewMode = new URLSearchParams(window.location.search).get('view_mode');
|
||||
if (['archived', 'locked', 'active'].includes(viewMode)) {
|
||||
setTimeout(() => {
|
||||
|
|
@ -348,7 +348,7 @@ function init() {
|
|||
initProtocolSectionOpenEvent();
|
||||
initDetailsDropdown();
|
||||
initAccessModal();
|
||||
wrapTables();
|
||||
initWrapTables();
|
||||
}
|
||||
|
||||
init();
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue