mirror of
https://github.com/easydiffusion/easydiffusion.git
synced 2025-04-03 13:20:35 +02:00
Merge pull request #1304 from JeLuF/dndfix
Remove warning when reusing settings - Fixes #1290
This commit is contained in:
commit
0990d8fc4d
@ -43,6 +43,7 @@ const TASK_MAPPING = {
|
||||
name: "Prompt",
|
||||
setUI: (prompt) => {
|
||||
promptField.value = prompt
|
||||
promptField.dispatchEvent(new Event("input"))
|
||||
},
|
||||
readUI: () => promptField.value,
|
||||
parse: (val) => val,
|
||||
@ -79,6 +80,7 @@ const TASK_MAPPING = {
|
||||
if (!widthField.value) {
|
||||
widthField.value = oldVal
|
||||
}
|
||||
widthField.dispatchEvent(new Event("change"))
|
||||
},
|
||||
readUI: () => parseInt(widthField.value),
|
||||
parse: (val) => parseInt(val),
|
||||
@ -91,6 +93,7 @@ const TASK_MAPPING = {
|
||||
if (!heightField.value) {
|
||||
heightField.value = oldVal
|
||||
}
|
||||
heightField.dispatchEvent(new Event("change"))
|
||||
},
|
||||
readUI: () => parseInt(heightField.value),
|
||||
parse: (val) => parseInt(val),
|
||||
|
Loading…
Reference in New Issue
Block a user