Missed upload class

This commit is contained in:
ebolam
2022-08-30 08:00:03 -04:00
parent f5d45c88e7
commit 76db75c40b
2 changed files with 7 additions and 0 deletions

View File

@@ -441,6 +441,9 @@ class model_settings(settings):
preset_value = bool(preset_value)
elif type(getattr(self, preset_key)) == str:
preset_value = str(preset_value)
if preset_key == "sampler_order":
if 6 not in preset_value:
preset_value.insert(0, 6)
setattr(self, preset_key, preset_value)
#Setup TQDP for token generation
elif name == "generated_tkns" and 'tqdm' in self.__dict__:

View File

@@ -844,6 +844,10 @@ td.server_vars {
display: none;
}
.WI_Folder_Header .upload {
grid-area: upload;
}
.WI_Folder_Header .download {
grid-area: download;
}