Skip to content

Commit

Permalink
Check for beta variable being undefined
Browse files Browse the repository at this point in the history
Instead of it being false - otherwise the UI would not load on
a GA image. :)
  • Loading branch information
M4rtinK committed Jul 20, 2023
1 parent 99cd49a commit 259b87d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/webui/src/components/app.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ export const Application = () => {
};

// Postpone rendering anything until we read the dbus address and the default configuration
if (!criticalError && (!address || !conf || !beta || !prettyName || !storeInitilized)) {
if (!criticalError && (!address || !conf || beta === undefined || !prettyName || !storeInitilized)) {
console.debug("Loading initial data...");
return null;
}
Expand Down

0 comments on commit 259b87d

Please sign in to comment.