diff --git a/public/index.html b/public/index.html index 0939101e4..6dc6d6509 100644 --- a/public/index.html +++ b/public/index.html @@ -323,10 +323,10 @@
- +
- +
@@ -399,7 +399,6 @@
-
@@ -844,10 +843,10 @@
- +
- +
@@ -898,10 +897,10 @@
- +
- +
@@ -1122,10 +1121,10 @@
- +
- +
@@ -5070,4 +5069,4 @@ - \ No newline at end of file + diff --git a/public/script.js b/public/script.js index 07176af33..c12dc9c95 100644 --- a/public/script.js +++ b/public/script.js @@ -737,7 +737,6 @@ async function firstLoadInit() { initStats(); initCfg(); doDailyExtensionUpdatesCheck(); - // Cohee: Uncomment when we decide to use loader hideLoader(); } diff --git a/public/scripts/nai-settings.js b/public/scripts/nai-settings.js index 48a67aaeb..6a4465c2b 100644 --- a/public/scripts/nai-settings.js +++ b/public/scripts/nai-settings.js @@ -194,7 +194,7 @@ function loadNovelSettingsUi(ui_settings) { $("#top_p_novel").val(ui_settings.top_p); $("#top_p_counter_novel").val(Number(ui_settings.top_p).toFixed(3)); $("#top_a_novel").val(ui_settings.top_a); - $("#top_a_counter_novel").val(Number(ui_settings.top_a).toFixed(2)); + $("#top_a_counter_novel").val(Number(ui_settings.top_a).toFixed(3)); $("#typical_p_novel").val(ui_settings.typical_p); $("#typical_p_counter_novel").val(Number(ui_settings.typical_p).toFixed(2)); $("#cfg_scale_novel").val(ui_settings.cfg_scale); @@ -275,7 +275,7 @@ const sliders = [ sliderId: "#top_a_novel", counterId: "#top_a_counter_novel", format: (val) => Number(val).toFixed(2), - setValue: (val) => { nai_settings.top_a = Number(val).toFixed(2); }, + setValue: (val) => { nai_settings.top_a = Number(val).toFixed(3); }, }, { sliderId: "#typical_p_novel",