Skip to content

Commit 59c18f3

Browse files
authored
Merge pull request #570 from tj-devel709/fix-26233
Bring over Javier's changes
2 parents eda6818 + aa9e7cd commit 59c18f3

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

9.0/Apps/DeveloperBalance/Pages/ManageMetaPage.xaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
<BindableLayout.ItemTemplate>
5555
<DataTemplate x:DataType="models:Category">
5656
<Grid ColumnSpacing="{StaticResource LayoutSpacing}" ColumnDefinitions="4*,3*,30,Auto">
57-
<Entry Text="{Binding Title}" Grid.Column="0" SemanticProperties.Description="Title" />
57+
<Entry Text="{Binding Title}" SemanticProperties.Description="{Binding Title}" Grid.Column="0" />
5858
<Entry Text="{Binding Color}" Grid.Column="1" x:Name="ColorEntry"
5959
SemanticProperties.Description="Color"
6060
SemanticProperties.Hint="Category color in HEX format">
@@ -75,7 +75,7 @@
7575
Background="Transparent"
7676
Command="{Binding DeleteCategoryCommand, Source={RelativeSource AncestorType={x:Type pageModels:ManageMetaPageModel}}, x:DataType=pageModels:ManageMetaPageModel}" CommandParameter="{Binding .}"
7777
Grid.Column="3"
78-
SemanticProperties.Description="Delete" />
78+
SemanticProperties.Description="Delete Category" />
7979
</Grid>
8080
</DataTemplate>
8181
</BindableLayout.ItemTemplate>
@@ -96,7 +96,7 @@
9696
<BindableLayout.ItemTemplate>
9797
<DataTemplate x:DataType="models:Tag">
9898
<Grid ColumnSpacing="{StaticResource LayoutSpacing}" ColumnDefinitions="4*,3*,30,Auto">
99-
<Entry Text="{Binding Title}" Grid.Column="0" SemanticProperties.Description="Title" />
99+
<Entry Text="{Binding Title}" Grid.Column="0" SemanticProperties.Description="{Binding Title}" />
100100
<Entry Text="{Binding Color}" Grid.Column="1" x:Name="ColorEntry"
101101
SemanticProperties.Description="Color"
102102
SemanticProperties.Hint="Tag color in HEX format">
@@ -114,6 +114,7 @@
114114

115115
<Button
116116
ImageSource="{StaticResource IconDelete}"
117+
SemanticProperties.Description="Delete Tag"
117118
Background="Transparent"
118119
Command="{Binding DeleteTagCommand, Source={RelativeSource AncestorType={x:Type pageModels:ManageMetaPageModel}}, x:DataType=pageModels:ManageMetaPageModel}" CommandParameter="{Binding .}"
119120
Grid.Column="3"/>

0 commit comments

Comments
 (0)