From 994d28674d615db17da524b4ec3b0f309e6543f4 Mon Sep 17 00:00:00 2001 From: Dan Cunningham Date: Mon, 4 Sep 2023 10:16:38 -0700 Subject: [PATCH] Reverts v-if/v-show change from #2029. (#2054) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Regression from #2029. A few of my UI pages stopped loading properly. Specifically there seemed to be a condition where when the page would draw its widgets before other parts of the page were loaded (or something similar, some race conditional). This would result in widgets loading with the wrong state, colors, icons, etc that are dependent on item state. I tracked it down to this one very small change, reverting back to a `v-show` from `v-if` for the main view ready state fixes this. Signed-off-by: Dan Cunningham Signed-off-by: Stefan Höhn --- bundles/org.openhab.ui/web/src/components/app.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundles/org.openhab.ui/web/src/components/app.vue b/bundles/org.openhab.ui/web/src/components/app.vue index 87b91128a7..3f41b2883b 100644 --- a/bundles/org.openhab.ui/web/src/components/app.vue +++ b/bundles/org.openhab.ui/web/src/components/app.vue @@ -141,7 +141,7 @@ - +