From 4156db3abba1bb10608c50f7ae1c19de7f410da0 Mon Sep 17 00:00:00 2001 From: Johannes Eder Date: Mon, 26 Jul 2021 18:47:18 +0200 Subject: [PATCH] chore(sort-table): implemented destroy --- frontend/src/utils/sort-table/sort-table.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/utils/sort-table/sort-table.js b/frontend/src/utils/sort-table/sort-table.js index 3c43a9ee2..639664685 100644 --- a/frontend/src/utils/sort-table/sort-table.js +++ b/frontend/src/utils/sort-table/sort-table.js @@ -21,7 +21,7 @@ export class SortTable { } destroy() { - console.log('TBD destroy SortTable'); + this._storageManager.clear(); } }