File tree Expand file tree Collapse file tree 1 file changed +26
-0
lines changed
src/components/web_themes/standard_legacy Expand file tree Collapse file tree 1 file changed +26
-0
lines changed Original file line number Diff line number Diff line change
1
+ <template >
2
+ <div class =" web-theme-standard-legacy" >
3
+ <openwb-base-range-input
4
+ title =" Zeitfenster Verlaufsdiagramm"
5
+ :min =" 15"
6
+ :max =" 240"
7
+ :step =" 15"
8
+ unit =" Min."
9
+ :model-value =" Math.round(webTheme.configuration.history_chart_range / (60 * 1000))"
10
+ @update:model-value =" updateConfiguration($event * 60 * 1000, 'configuration.history_chart_range')"
11
+ >
12
+ <template #help >
13
+ Das Zeitfenster für das Verlaufsdiagramm wird auf die hier eingestellte Anzahl Minuten beschränkt.
14
+ </template >
15
+ </openwb-base-range-input >
16
+ </div >
17
+ </template >
18
+
19
+ <script >
20
+ import WebThemeConfigMixin from " ../WebThemeConfigMixin.vue" ;
21
+
22
+ export default {
23
+ name: " WebThemeKoala" ,
24
+ mixins: [WebThemeConfigMixin],
25
+ };
26
+ </script >
You can’t perform that action at this time.
0 commit comments