From 303ab556571acc28541b0d5b9a4ff0f1d7f3466e 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) 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 --- 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 @@ - +