Browse Source

Be sure to have all brackets inside the XAML

Added extra brackets } to get XAML compliant again when using converters
Fixes #781
pull/794/head
Glenn Versweyveld 6 years ago
committed by GitHub
parent
commit
86328b8e85
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      src/Mobile/eShopOnContainers/eShopOnContainers.Core/Views/LoginView.xaml

+ 3
- 3
src/Mobile/eShopOnContainers/eShopOnContainers.Core/Views/LoginView.xaml View File

@ -198,7 +198,7 @@
</Entry.Triggers> </Entry.Triggers>
</Entry> </Entry>
<Label <Label
Text="{Binding UserName.Errors, Converter={StaticResource FirstValidationErrorConverter}"
Text="{Binding UserName.Errors, Converter={StaticResource FirstValidationErrorConverter}}"
Style="{StaticResource ValidationErrorLabelStyle}" /> Style="{StaticResource ValidationErrorLabelStyle}" />
<Label <Label
Text="Password" Text="Password"
@ -227,7 +227,7 @@
</Entry.Triggers> </Entry.Triggers>
</Entry> </Entry>
<Label <Label
Text="{Binding Password.Errors, Converter={StaticResource FirstValidationErrorConverter}"
Text="{Binding Password.Errors, Converter={StaticResource FirstValidationErrorConverter}}"
Style="{StaticResource ValidationErrorLabelStyle}" /> Style="{StaticResource ValidationErrorLabelStyle}" />
</StackLayout> </StackLayout>
<!-- LOGIN BUTTON --> <!-- LOGIN BUTTON -->
@ -364,4 +364,4 @@
</ActivityIndicator.WidthRequest> </ActivityIndicator.WidthRequest>
</ActivityIndicator> </ActivityIndicator>
</Grid> </Grid>
</ContentPage>
</ContentPage>

Loading…
Cancel
Save