diff --git a/public/js/components/Dashboard/Item.js b/public/js/components/Dashboard/Item.js
index 1ff6a4516..59f33b711 100644
--- a/public/js/components/Dashboard/Item.js
+++ b/public/js/components/Dashboard/Item.js
@@ -45,15 +45,6 @@ export default {
ready() {
return this.component && this.arguments !== null;
},
- widget_action_identifier(){
- return `${this.widget.widget_kurzbz}-${this.index}-action-section`;
- },
- widgetInformation(){
- return {
- action_section_identifier: this.widget_action_identifier,
- widget_kurzbz: this.widget.widget_kurzbz,
- }
- }
},
methods: {
getWidgetC4Link(widget) {
@@ -138,10 +129,6 @@ export default {
-
-
-
-
@@ -153,7 +140,7 @@ export default {
-
+
@@ -161,7 +148,7 @@ export default {
{{ widget ? 'Config for ' + widget.setup.name : '' }}
-
+
diff --git a/public/js/components/DashboardWidget/Abstract.js b/public/js/components/DashboardWidget/Abstract.js
index 50f63cf74..e9f87490d 100644
--- a/public/js/components/DashboardWidget/Abstract.js
+++ b/public/js/components/DashboardWidget/Abstract.js
@@ -26,9 +26,6 @@ export default {
this.$emit('update:sharedData', value);
}
},
- widget_action_css_identifier(){
- return `#${this.widgetInfo.action_section_identifier}`;
- }
},
methods: {
formatDateTime: function(dateTime) {
diff --git a/public/js/components/DashboardWidget/Url.js b/public/js/components/DashboardWidget/Url.js
index c0f05257e..8123852d0 100644
--- a/public/js/components/DashboardWidget/Url.js
+++ b/public/js/components/DashboardWidget/Url.js
@@ -160,17 +160,11 @@ export default {