mirror of
https://github.com/vladmandic/automatic
synced 2026-09-19 17:24:32 +02:00
Merge branch 'dev' into feat/tag-dictionaries
This commit is contained in:
@@ -20,7 +20,7 @@ class ConnectionMonitorState {
|
||||
|
||||
static setData({ online, data }) {
|
||||
this.online = online;
|
||||
if (data?.version) this.version = data.version;
|
||||
if (data?.updated) this.version = data.updated;
|
||||
if (data?.commit) this.commit = data.commit;
|
||||
if (data?.branch) this.branch = data.branch;
|
||||
if (data?.model) this.model = this.trimModelName(data.model);
|
||||
|
||||
@@ -78,7 +78,7 @@ const anyPromptExists = () => gradioApp().querySelectorAll('.main-prompts').leng
|
||||
|
||||
function scheduleAfterUiUpdateCallbacks() {
|
||||
clearTimeout(uiAfterUpdateTimeout);
|
||||
uiAfterUpdateTimeout = setTimeout(() => executeCallbacks(uiAfterUpdateCallbacks, 500));
|
||||
uiAfterUpdateTimeout = setTimeout(() => executeCallbacks(uiAfterUpdateCallbacks), 250);
|
||||
}
|
||||
|
||||
let executedOnLoaded = false;
|
||||
|
||||
Reference in New Issue
Block a user