feat: implement duplicate recipe detection and management; add UI for marking duplicates for deletion

This commit is contained in:
Will Miao
2025-05-08 17:29:58 +08:00
parent 75a95f0109
commit 4034eb3221
5 changed files with 477 additions and 10 deletions

View File

@@ -94,6 +94,9 @@ export class ImageProcessor {
lora => !lora.existsLocally
);
// Reset import as new flag
this.importManager.importAsNew = false;
// Proceed to recipe details step
this.importManager.showRecipeDetailsStep();
@@ -139,6 +142,9 @@ export class ImageProcessor {
lora => !lora.existsLocally
);
// Reset import as new flag
this.importManager.importAsNew = false;
// Proceed to recipe details step
this.importManager.showRecipeDetailsStep();
@@ -187,6 +193,9 @@ export class ImageProcessor {
lora => !lora.existsLocally
);
// Reset import as new flag
this.importManager.importAsNew = false;
// Proceed to recipe details step
this.importManager.showRecipeDetailsStep();