Skip to content

Commit

Permalink
Fix displaying dashboard and cart buttons during create profile wizard
Browse files Browse the repository at this point in the history
  • Loading branch information
mzebrak committed Dec 19, 2024
1 parent 2115dcb commit 6b31271
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions clive/__private/ui/widgets/clive_basic/clive_header.py
Original file line number Diff line number Diff line change
Expand Up @@ -372,8 +372,9 @@ def _create_left_part_bar(self) -> ComposeResult:
yield AlarmDisplay()

def _create_right_part_bar(self) -> ComposeResult:
yield DashboardButton()
yield CartStatus()
if not self.world.is_in_create_profile_mode:
yield DashboardButton()
yield CartStatus()
yield NodeStatus()

def _create_left_part_expandable(self) -> ComposeResult:
Expand Down

0 comments on commit 6b31271

Please sign in to comment.