mirror of
https://github.com/easydiffusion/easydiffusion.git
synced 2025-01-30 10:09:20 +01:00
Merge pull request #444 from madrang/beta
Remove prompt_strength and init_image when not using in-painting
This commit is contained in:
commit
b52b854270
@ -13,11 +13,13 @@ function parseBoolean(stringValue) {
|
||||
switch(stringValue?.toLowerCase()?.trim()) {
|
||||
case "true":
|
||||
case "yes":
|
||||
case "on":
|
||||
case "1":
|
||||
return true;
|
||||
|
||||
case "false":
|
||||
case "no":
|
||||
case "off":
|
||||
case "0":
|
||||
case null:
|
||||
case undefined:
|
||||
@ -406,6 +408,10 @@ function checkWriteToClipboardPermission (result) {
|
||||
event.stopPropagation()
|
||||
const uiState = readUI()
|
||||
TASK_REQ_NO_EXPORT.forEach((key) => delete uiState.reqBody[key])
|
||||
if (uiState.reqBody.init_image && !IMAGE_REGEX.test(uiState.reqBody.init_image)) {
|
||||
delete uiState.reqBody.init_image
|
||||
delete uiState.reqBody.prompt_strength
|
||||
}
|
||||
navigator.clipboard.writeText(JSON.stringify(uiState, undefined, 4))
|
||||
})
|
||||
resetSettings.parentNode.insertBefore(copyIcon, resetSettings)
|
||||
|
Loading…
Reference in New Issue
Block a user