diff options
| author | Jake Mannens <jake@asger.xyz> | 2026-06-11 00:49:00 +1000 |
|---|---|---|
| committer | Jake Mannens <jake@asger.xyz> | 2026-06-17 02:44:45 +1000 |
| commit | aec444327a80b1f1efc8b765b99ded5711bd3eda (patch) | |
| tree | f183a5d691e1b53e10bbe3a8a0df2bb79a5c8f9c /Pages/Component/AboutDialog.razor | |
| parent | 360d73cba274cdf7e075871cf30afb4981475397 (diff) | |
Updated pages and components to use new Button componentdev
Diffstat (limited to 'Pages/Component/AboutDialog.razor')
| -rw-r--r-- | Pages/Component/AboutDialog.razor | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Pages/Component/AboutDialog.razor b/Pages/Component/AboutDialog.razor index 888040e..f696549 100644 --- a/Pages/Component/AboutDialog.razor +++ b/Pages/Component/AboutDialog.razor @@ -684,7 +684,9 @@ <ProgressBar @ref=progressBar /> </div> <ButtonContainer> - <button @onclick=Hide>Close</button> + <Button + BackgroundColor=Color.ButtonPrimary + OnClick=@(async () => Hide())>Close</Button> </ButtonContainer> </Dialog> |
