-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ccf4183
commit 9d3c2c3
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
@inherits ComponentBase | ||
|
||
<div class="setting-container"> | ||
<div class="flex-row"> | ||
<MudText> | ||
Request timeout | ||
</MudText> | ||
|
||
<MudTextField Class="setting-field" | ||
Margin="Margin.Dense" | ||
@onfocusout="OnInputFocusOut" | ||
Variant="Variant.Outlined" | ||
Value="@Value"/> | ||
</div> | ||
|
||
@* <MudSlider Min="10" Max="120" Value="Value" Color="Color.Primary" *@ | ||
@* Variant="Variant.Filled"/> *@ | ||
</div> | ||
|
||
@code { | ||
|
||
[Parameter] public required object Value { get; set; } | ||
[Parameter] public object? MinValue { get; set; } | ||
[Parameter] public object? MaxValue { get; set; } | ||
|
||
private void OnInputFocusOut() | ||
{ | ||
|
||
} | ||
} |