From 6ce0cf6209f3bb2df4db87733330835d4c6d1253 Mon Sep 17 00:00:00 2001 From: chfhtw Date: Fri, 24 Apr 2026 10:56:00 +0200 Subject: [PATCH] remove unused function --- public/js/components/DashboardWidget/Url.js | 9 --------- 1 file changed, 9 deletions(-) diff --git a/public/js/components/DashboardWidget/Url.js b/public/js/components/DashboardWidget/Url.js index 6e7ffeeb3..0937c71a7 100644 --- a/public/js/components/DashboardWidget/Url.js +++ b/public/js/components/DashboardWidget/Url.js @@ -235,15 +235,6 @@ export default { } this.changeOrder(current.bookmark_id, next.bookmark_id); }, - addNewTag(){ - if(this.newTag != null && this.newTag.length) { - this.tagsArrayMS.push({tag: this.newTag, code: this.newTag}); - this.selectedTags.push({tag: this.newTag, code: this.newTag}); - this.newTag = null; - } - else - this.$fhcAlert.alertError(this.$p.t("bookmark", "errorInputNecessary")); - }, changeOrder(bookmark_id_1, bookmark_id_2){ this.$api .call(ApiBookmark.changeOrder(bookmark_id_1, bookmark_id_2))