feat(frontend): add option Settings->Preferences->Other->When losing connection to the server->Disable
This commit is contained in:
parent
7ec3c8cc8b
commit
a474668171
|
@ -155,7 +155,7 @@ export const PREF_DEF = {
|
|||
}[],
|
||||
},
|
||||
serverDisconnectedBehavior: {
|
||||
default: 'disabled' as 'quiet' | 'reload' | 'dialog',
|
||||
default: 'quiet' as 'quiet' | 'reload' | 'dialog' | 'disabled',
|
||||
},
|
||||
nsfw: {
|
||||
default: 'respect' as 'respect' | 'force' | 'ignore',
|
||||
|
|
|
@ -212,7 +212,7 @@ export const store = markRaw(new Pizzax('base', {
|
|||
},
|
||||
serverDisconnectedBehavior: {
|
||||
where: 'device',
|
||||
default: 'disabled' as 'quiet' | 'dialog' | 'disabled',
|
||||
default: 'quiet' as 'quiet' | 'reload' | 'dialog' | 'disabled',
|
||||
},
|
||||
nsfw: {
|
||||
where: 'device',
|
||||
|
|
Loading…
Reference in New Issue