From 406f8daa1273e93db1ea4ea4110d30e1428a9b95 Mon Sep 17 00:00:00 2001 From: Michael Shamoon <4887959+nikonratm@users.noreply.github.com> Date: Tue, 22 Dec 2020 03:32:51 -0800 Subject: [PATCH] TODO comment --- .../src/app/components/document-list/document-list.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-ui/src/app/components/document-list/document-list.component.ts b/src-ui/src/app/components/document-list/document-list.component.ts index 9e2652ceb..91fd0cd40 100644 --- a/src-ui/src/app/components/document-list/document-list.component.ts +++ b/src-ui/src/app/components/document-list/document-list.component.ts @@ -173,7 +173,6 @@ export class DocumentListComponent implements OnInit { } if (changedTags.itemsToRemove.length > 0) { if (!both) { - // TODO: API endpoint for remove multiple tags action = 'remove_tags' tags = changedTags.itemsToRemove } else { @@ -186,6 +185,7 @@ export class DocumentListComponent implements OnInit { modal.componentInstance.btnClass = "btn-warning" modal.componentInstance.btnCaption = "Confirm" modal.componentInstance.confirmClicked.subscribe(() => { + // TODO: API endpoints for add/remove multiple tags this.executeBulkOperation(action, {"tags": tags ? tags.map(t => t.id) : null}).subscribe( response => { if (!both) modal.close()