mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-03-06 12:43:06 +08:00
Merge pull request #7192 from lasniscinote/gl_SCI_10076
(fix )locked view fix [SCI-10076]
This commit is contained in:
commit
6660e716c5
1 changed files with 1 additions and 1 deletions
|
@ -319,7 +319,7 @@ function init() {
|
|||
init();
|
||||
|
||||
const viewMode = new URLSearchParams(window.location.search).get('view_mode');
|
||||
if (viewMode === 'archived') {
|
||||
if (['archived', 'locked'].includes(viewMode)) {
|
||||
setTimeout(() => {
|
||||
const notesContainerEl = document.getElementById('notes-container');
|
||||
window.wrapTables(notesContainerEl);
|
||||
|
|
Loading…
Reference in a new issue