mirror of
https://github.com/zadam/trilium.git
synced 2025-02-24 23:13:43 +08:00
fix zen mode with attributes, closes #1213
This commit is contained in:
parent
29efe3a492
commit
0c72d29684
5 changed files with 7 additions and 6 deletions
|
@ -15,7 +15,6 @@ import AttributeListWidget from "../widgets/attribute_list.js";
|
|||
import RunScriptButtonsWidget from "../widgets/run_script_buttons.js";
|
||||
import NoteTypeWidget from "../widgets/note_type.js";
|
||||
import NoteActionsWidget from "../widgets/note_actions.js";
|
||||
import PromotedAttributesWidget from "../widgets/promoted_attributes.js";
|
||||
import NoteDetailWidget from "../widgets/note_detail.js";
|
||||
import NoteInfoWidget from "../widgets/collapsible_widgets/note_info.js";
|
||||
import CalendarWidget from "../widgets/collapsible_widgets/calendar.js";
|
||||
|
|
|
@ -156,7 +156,9 @@ async function consumeSyncData() {
|
|||
logError(`Encountered error ${e.message}: ${e.stack}, reloading frontend.`);
|
||||
|
||||
// if there's an error in updating the frontend then the easy option to recover is to reload the frontend completely
|
||||
utils.reloadApp();
|
||||
if (!glob.isDev) {
|
||||
utils.reloadApp();
|
||||
}
|
||||
}
|
||||
|
||||
for (const syncRow of nonProcessedSyncRows) {
|
||||
|
|
|
@ -66,4 +66,4 @@ export default class SimilarNotesWidget extends CollapsibleWidget {
|
|||
this.refresh();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -9,6 +9,7 @@ const TPL = `
|
|||
<style>
|
||||
.note-title-container {
|
||||
flex-grow: 100;
|
||||
height: 34px;
|
||||
}
|
||||
|
||||
.note-title-container input.note-title {
|
||||
|
|
|
@ -10,7 +10,6 @@ const repository = require('./repository');
|
|||
const axios = require('axios');
|
||||
const dayjs = require('dayjs');
|
||||
const cloningService = require('./cloning');
|
||||
const ws = require('./ws.js');
|
||||
const appInfo = require('./app_info');
|
||||
const searchService = require('./search/services/search.js');
|
||||
|
||||
|
@ -88,7 +87,7 @@ function BackendScriptApi(currentNote, apiParams) {
|
|||
|
||||
/**
|
||||
* This is a powerful search method - you can search by attributes and their values, e.g.:
|
||||
* "@dateModified =* MONTH AND @log". See full documentation for all options at: https://github.com/zadam/trilium/wiki/Search
|
||||
* "#dateModified =* MONTH AND #log". See full documentation for all options at: https://github.com/zadam/trilium/wiki/Search
|
||||
*
|
||||
* @method
|
||||
* @param {string} searchString
|
||||
|
@ -98,7 +97,7 @@ function BackendScriptApi(currentNote, apiParams) {
|
|||
|
||||
/**
|
||||
* This is a powerful search method - you can search by attributes and their values, e.g.:
|
||||
* "@dateModified =* MONTH AND @log". See full documentation for all options at: https://github.com/zadam/trilium/wiki/Search
|
||||
* "#dateModified =* MONTH AND #log". See full documentation for all options at: https://github.com/zadam/trilium/wiki/Search
|
||||
*
|
||||
* @method
|
||||
* @param {string} searchString
|
||||
|
|
Loading…
Reference in a new issue