mirror of
https://github.com/zadam/trilium.git
synced 2025-06-05 01:18:44 +02:00
added debugModeEnabled option
This commit is contained in:
parent
c75439a4b5
commit
ec7021b436
@ -155,10 +155,14 @@ async function consumeSyncData() {
|
||||
catch (e) {
|
||||
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
|
||||
if (!glob.isDev) {
|
||||
if (!glob.isDev && !options.is('debugModeEnabled')) {
|
||||
// if there's an error in updating the frontend then the easy option to recover is to reload the frontend completely
|
||||
|
||||
utils.reloadApp();
|
||||
}
|
||||
else {
|
||||
alert("Encountered error, check out the console.");
|
||||
}
|
||||
}
|
||||
|
||||
for (const syncRow of nonProcessedSyncRows) {
|
||||
|
@ -87,7 +87,8 @@ const defaultOptions = [
|
||||
{ name: 'hideIncludedImages_main', value: 'true', isSynced: false },
|
||||
{ name: 'attributeListExpanded', value: 'false', isSynced: false },
|
||||
{ name: 'promotedAttributesExpanded', value: 'true', isSynced: true },
|
||||
{ name: 'similarNotesExpanded', value: 'true', isSynced: true }
|
||||
{ name: 'similarNotesExpanded', value: 'true', isSynced: true },
|
||||
{ name: 'debugModeEnabled', value: 'false', isSynced: false }
|
||||
];
|
||||
|
||||
function initStartupOptions() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user