Be sure to have all brackets inside the XAML

Added extra brackets } to get XAML compliant again when using converters
Fixes #781
This commit is contained in:
Glenn Versweyveld 2018-10-02 15:01:25 +02:00 committed by GitHub
parent 0bf9a91ac4
commit 86328b8e85
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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