Skip to content

Commit

Permalink
Correct renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
Kasmadei committed Jul 8, 2024
1 parent a484976 commit 06b5a74
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/components/dashboard/content/list/FaultTreeOverview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,14 @@ const FaultTreeOverview = () => {
<Box flexDirection="column">
<Box display="flex" flexDirection="row-reverse">
<OverviewTypeToggler selectedView={selectedView} toggleView={toggleView} />
<Tooltip title={isTreeCreateDisabled ? t("create.systemRequired") : ""}>
<Tooltip title={isTreeCreationDisabled ? t("create.systemRequired") : ""}>
<span>
<Button variant="contained" onClick={handleDialogOpen} disabled={isTreeCreateDisabled} sx={{ height: 36 }}>
<Button
variant="contained"
onClick={handleDialogOpen}
disabled={isTreeCreationDisabled}
sx={{ height: 36 }}
>
{t("create.tree")}
</Button>
</span>
Expand Down

0 comments on commit 06b5a74

Please sign in to comment.