We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36dcc2f commit 80b6800Copy full SHA for 80b6800
bundles/org.openhab.ui/web/src/pages/analyzer/analyzer.vue
@@ -38,7 +38,8 @@
38
<f7-block class="no-margin no-padding" v-show="controlsTab === 'series'">
39
<f7-row>
40
<f7-col :width="100" />
41
- <f7-col :width="100" v-if="showChart">
+ <!-- use v-show instead of v-if to keep the item-picker props valid while selecting Items and avoid TypeErrors -->
42
+ <f7-col :width="100" v-show="showChart">
43
<div class="card data-table">
44
<div class="card-header no-padding" style="min-height: auto">
45
<f7-list style="width: 100%">
0 commit comments