fix gif import

This commit is contained in:
beo3000 2026-01-08 21:27:56 +01:00
parent 40db3d08c0
commit 6c0cb35842
2 changed files with 2 additions and 2 deletions

View File

@ -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)
{

View File

@ -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()