add checkpoints tab for extra networks UI

This commit is contained in:
AUTOMATIC
2023-01-28 22:52:27 +03:00
parent 91c8d0dcfc
commit 1d8e06d542
8 changed files with 94 additions and 8 deletions

View File

@@ -309,3 +309,10 @@ function updateInput(target){
Object.defineProperty(e, "target", {value: target})
target.dispatchEvent(e);
}
var desiredCheckpointName = null;
function selectCheckpoint(name){
desiredCheckpointName = name;
gradioApp().getElementById('change_checkpoint').click()
}