fix gif import
This commit is contained in:
parent
40db3d08c0
commit
6c0cb35842
|
|
@ -70,7 +70,7 @@
|
|||
private string _termGutter = "Rinne";
|
||||
private string _termNoWood = "Pudel";
|
||||
|
||||
private bool IsValid => !string.IsNullOrWhiteSpace(_name) && (_strike || _circle || _bell || _gutter || _noWood);
|
||||
private bool IsValid => !string.IsNullOrWhiteSpace(_name) && (_strike || _circle || _bell || _gutter || _noWood || _cleared) ;
|
||||
|
||||
protected override async Task OnAfterRenderAsync(bool firstRender)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -56,7 +56,7 @@
|
|||
|
||||
private bool IsValid => !string.IsNullOrWhiteSpace(_url)
|
||||
&& !string.IsNullOrWhiteSpace(_name)
|
||||
&& (_strike || _circle || _bell || _gutter || _noWood)
|
||||
&& (_strike || _circle || _bell || _gutter || _noWood || _cleared)
|
||||
&& Uri.TryCreate(_url, UriKind.Absolute, out _);
|
||||
|
||||
private ThrowEventType GetEvents()
|
||||
|
|
|
|||
Loading…
Reference in New Issue