We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3bae3cf commit 8c02b63Copy full SHA for 8c02b63
Daybreak/Views/LaunchConfigurationsView.razor
@@ -51,11 +51,14 @@
51
<div class="launch-config-executable-field">
52
<FluentSelect TOption="string"
53
Multiple="false"
54
+ Width="100%"
55
Items="@this.ViewModel.Executables"
56
SelectedOption="@config.ExecutablePath"
57
SelectedOptionChanged="@((newValue) => this.ViewModel.ExecutableChanged(config, newValue))">
58
<OptionTemplate>
- @(string.IsNullOrWhiteSpace(context) ? "Any Executable" : context)
59
+ <div title="@(context)">
60
+ @(string.IsNullOrWhiteSpace(context) ? "Any Executable" : context)
61
+ </div>
62
</OptionTemplate>
63
</FluentSelect>
64
</div>
0 commit comments