Skip to content

Commit 7605a9e

Browse files
Rename Cards -> Elements
1 parent ae95fa4 commit 7605a9e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

JournalApp/Pages/Index.razor

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<MudSpacer />
1919

2020
<MudMenu Icon="@Icons.Material.Rounded.MoreVert" aria-label="More options" AnchorOrigin="Origin.BottomRight" TransformOrigin="Origin.TopRight">
21-
<MudMenuItem Icon="@Icons.Material.Rounded.DashboardCustomize" OnClick="ManageCategories" AutoClose="false">Cards</MudMenuItem>
21+
<MudMenuItem Icon="@Icons.Material.Rounded.DashboardCustomize" OnClick="ManageCategories" AutoClose="false">Elements</MudMenuItem>
2222
<MudMenuItem Icon="@Icons.Material.Rounded.Medication" OnClick="ManageMedications" AutoClose="false">Medications</MudMenuItem>
2323
<MudMenuItem Icon="@Icons.Material.Rounded.Chat" OnClick="NewNote">New note</MudMenuItem>
2424
<MudMenuItem Icon="@Icons.Material.Rounded.ShowChart" OnClick="OpenTrends" AutoClose="false">Trends</MudMenuItem>
@@ -110,7 +110,7 @@
110110
@if (group.Key == null)
111111
{
112112
<MudButton Variant="Variant.Outlined" Color="Color.Primary" StartIcon="@Icons.Material.Rounded.DashboardCustomize" OnClick="ManageCategories">
113-
Manage cards
113+
Manage elements
114114
</MudButton>
115115
}
116116
else if (group.Key == "Medications")

JournalApp/Pages/ManageCategoriesPage.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<div class="page-toolbar">
1010
<MudIconButton Icon="@Icons.Material.Rounded.ArrowBack" aria-label="Save changes and go home" OnClick="Submit" />
1111

12-
<MudText Typo="Typo.h6">@(Group == null ? "Cards" : Group)</MudText>
12+
<MudText Typo="Typo.h6">@(Group == null ? "Elements" : Group)</MudText>
1313

1414
<MudSpacer />
1515

0 commit comments

Comments
 (0)