Merge pull request #444 from madrang/beta

Remove prompt_strength and init_image when not using in-painting
This commit is contained in:
cmdr2 2022-11-07 14:43:48 +05:30 committed by GitHub
commit b52b854270
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,11 +13,13 @@ function parseBoolean(stringValue) {
switch(stringValue?.toLowerCase()?.trim()) { switch(stringValue?.toLowerCase()?.trim()) {
case "true": case "true":
case "yes": case "yes":
case "on":
case "1": case "1":
return true; return true;
case "false": case "false":
case "no": case "no":
case "off":
case "0": case "0":
case null: case null:
case undefined: case undefined:
@ -406,6 +408,10 @@ function checkWriteToClipboardPermission (result) {
event.stopPropagation() event.stopPropagation()
const uiState = readUI() const uiState = readUI()
TASK_REQ_NO_EXPORT.forEach((key) => delete uiState.reqBody[key]) 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)) navigator.clipboard.writeText(JSON.stringify(uiState, undefined, 4))
}) })
resetSettings.parentNode.insertBefore(copyIcon, resetSettings) resetSettings.parentNode.insertBefore(copyIcon, resetSettings)