From 4e0473ce115aa6271775739c08bd09aa3fc3c4de Mon Sep 17 00:00:00 2001 From: Will Miao <13051207myq@gmail.com> Date: Fri, 28 Mar 2025 02:53:30 +0800 Subject: [PATCH] Fix redownloading loras issue --- static/js/managers/ImportManager.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/static/js/managers/ImportManager.js b/static/js/managers/ImportManager.js index 7e2154dc..655cfe83 100644 --- a/static/js/managers/ImportManager.js +++ b/static/js/managers/ImportManager.js @@ -116,6 +116,7 @@ export class ImportManager { this.recipeName = ''; this.recipeTags = []; this.missingLoras = []; + this.downloadableLoRAs = []; // Reset import mode to upload this.importMode = 'upload'; @@ -1213,4 +1214,4 @@ export class ImportManager { return true; } -} \ No newline at end of file +}