mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-24 08:41:56 +08:00
Fix table freezing [SCI-10596]
This commit is contained in:
parent
b7acfab463
commit
9f57e8161a
1 changed files with 1 additions and 1 deletions
|
@ -329,7 +329,7 @@ function initAccessModal() {
|
|||
|
||||
function initWrapTables() {
|
||||
const viewMode = new URLSearchParams(window.location.search).get('view_mode');
|
||||
if (['archived', 'locked', 'active'].includes(viewMode)) {
|
||||
if (['archived', 'locked'].includes(viewMode)) {
|
||||
setTimeout(() => {
|
||||
const notesContainerEl = document.getElementById('notes-container');
|
||||
window.wrapTables(notesContainerEl);
|
||||
|
|
Loading…
Reference in a new issue