fix placement of "Edit" button on read only notes

This commit is contained in:
zadam 2020-09-19 23:44:30 +02:00
parent 50d3ddbed5
commit 27052143ab
2 changed files with 2 additions and 1 deletions

View file

@ -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.`);

View file

@ -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 {