mirror of
https://github.com/zadam/trilium.git
synced 2024-12-29 11:24:45 +08:00
fix placement of "Edit" button on read only notes
This commit is contained in:
parent
50d3ddbed5
commit
27052143ab
2 changed files with 2 additions and 1 deletions
|
@ -150,7 +150,7 @@ async function consumeSyncData() {
|
|||
const nonProcessedSyncRows = allSyncRows.filter(sync => !processedEntityChangeIds.has(sync.id));
|
||||
|
||||
try {
|
||||
await utils.timeLimit(processSyncRows(nonProcessedSyncRows), 15000);
|
||||
await utils.timeLimit(processSyncRows(nonProcessedSyncRows), 30000);
|
||||
}
|
||||
catch (e) {
|
||||
logError(`Encountered error ${e.message}: ${e.stack}, reloading frontend.`);
|
||||
|
|
|
@ -18,6 +18,7 @@ const TPL = `
|
|||
height: 100%;
|
||||
padding: 10px;
|
||||
font-family: var(--detail-text-font-family);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.note-detail-readonly-text p:first-child, .note-detail-editable-text::before {
|
||||
|
|
Loading…
Reference in a new issue