mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-28 18:54:09 +00:00
Fix default setting issue for first time install (#203)
* Fix default setting issue for first time install * Update test expectations [skip ci] --------- Co-authored-by: github-actions <github-actions@github.com>
This commit is contained in:
Binary file not shown.
|
Before Width: | Height: | Size: 113 KiB After Width: | Height: | Size: 113 KiB |
Binary file not shown.
|
Before Width: | Height: | Size: 97 KiB After Width: | Height: | Size: 97 KiB |
@@ -40,7 +40,8 @@ const updateTheme = (e) => {
|
||||
};
|
||||
|
||||
const updateNodeSearchSetting = (e) => {
|
||||
nodeSearchEnabled.value = e.detail.value === "default";
|
||||
const settingValue = e.detail.value || "default";
|
||||
nodeSearchEnabled.value = settingValue === "default";
|
||||
};
|
||||
|
||||
const init = async () => {
|
||||
|
||||
Reference in New Issue
Block a user