Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SLVS-1466 Add back warning for the deprecated credentials #5705

Merged
merged 1 commit into from
Sep 26, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/ConnectedMode/UI/Credentials/CredentialsDialog.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
<RowDefinition Height="*"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>

<TextBlock Grid.Row="0" VerticalAlignment="Center" Margin="0, 10, 0, 0">
Expand Down Expand Up @@ -126,7 +127,10 @@

<ui:ProgressAndErrorHandlerComponent Grid.Row="3" Grid.Column="0" Margin="0,5" ProgressReporterViewModel="{Binding Path=ProgressReporterViewModel}"/>

<Grid Grid.Row="4" HorizontalAlignment="Right" Margin="0,10">
<ui:WarningMessage Grid.Row="4" Grid.Column="0" Margin="0,5" WarningText="{x:Static res:UiResources.DeprecatedAuthenticationTypeDescription}"
Visibility="{Binding Path=IsCredentialsAuthentication, Converter={StaticResource TrueToVisibleConverter}}" />

<Grid Grid.Row="5" HorizontalAlignment="Right" Margin="0,10">
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
Expand Down