diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-08-13 13:46:32 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-13 13:46:32 +0000 |
commit | 1c6ca09992fc2c4f7a250670246762a184abace3 (patch) | |
tree | 4d61ec966a5924fd92b435c4750ee93720ed3539 /modules/ui_extra_networks_checkpoints.py | |
parent | d73db17ee330ceb256defeab00a6097b943f923b (diff) | |
parent | 7fa5ee54b15904bef6598800df76ba1291d44ec6 (diff) | |
download | stable-diffusion-webui-gfx803-1c6ca09992fc2c4f7a250670246762a184abace3.tar.gz stable-diffusion-webui-gfx803-1c6ca09992fc2c4f7a250670246762a184abace3.tar.bz2 stable-diffusion-webui-gfx803-1c6ca09992fc2c4f7a250670246762a184abace3.zip |
Merge pull request #12510 from catboxanon/feat/extnet/hashes
Support search and display of hashes for all extra network items
Diffstat (limited to 'modules/ui_extra_networks_checkpoints.py')
-rw-r--r-- | modules/ui_extra_networks_checkpoints.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/ui_extra_networks_checkpoints.py b/modules/ui_extra_networks_checkpoints.py index 77885022..ebb5249f 100644 --- a/modules/ui_extra_networks_checkpoints.py +++ b/modules/ui_extra_networks_checkpoints.py @@ -19,6 +19,7 @@ class ExtraNetworksPageCheckpoints(ui_extra_networks.ExtraNetworksPage): return {
"name": checkpoint.name_for_extra,
"filename": checkpoint.filename,
+ "shorthash": checkpoint.shorthash,
"preview": self.find_preview(path),
"description": self.find_description(path),
"search_term": self.search_terms_from_path(checkpoint.filename) + " " + (checkpoint.sha256 or ""),
|