diff --git a/bundles/org.openhab.ui/web/src/components/widgets/standard/oh-clock-card.vue b/bundles/org.openhab.ui/web/src/components/widgets/standard/oh-clock-card.vue
index d4792dc41..cffc10a2b 100644
--- a/bundles/org.openhab.ui/web/src/components/widgets/standard/oh-clock-card.vue
+++ b/bundles/org.openhab.ui/web/src/components/widgets/standard/oh-clock-card.vue
@@ -20,9 +20,7 @@
-
- {{ config.footer }}
-
+
@@ -30,12 +28,14 @@
import mixin from '../widget-mixin'
import { actionsMixin } from '../widget-actions'
import OhClock from '../system/oh-clock.vue'
+import OhCardFooter from '../system/oh-card-footer.vue'
import { OhClockCardDefinition } from '@/assets/definitions/widgets/standard/cards'
export default {
mixins: [mixin, actionsMixin],
components: {
- OhClock
+ OhClock,
+ OhCardFooter
},
widget: OhClockCardDefinition
}
diff --git a/bundles/org.openhab.ui/web/src/components/widgets/standard/oh-colorpicker-card.vue b/bundles/org.openhab.ui/web/src/components/widgets/standard/oh-colorpicker-card.vue
index 179ae4a75..7a2a28b11 100644
--- a/bundles/org.openhab.ui/web/src/components/widgets/standard/oh-colorpicker-card.vue
+++ b/bundles/org.openhab.ui/web/src/components/widgets/standard/oh-colorpicker-card.vue
@@ -6,9 +6,7 @@
-
- {{ config.footer }}
-
+
@@ -18,12 +16,14 @@