Update button text for toggling exercise and routine creation to use 'x' instead of 'Close'

This commit is contained in:
2026-02-04 21:51:15 +01:00
parent 00688eb548
commit fae57c6c75
2 changed files with 2 additions and 2 deletions

View File

@@ -12,7 +12,7 @@
<header class="page-header">
<h1>Routines</h1>
<p>Build routines from your exercise list.</p>
<button class="primary" @onclick="ToggleCreate">@(ShowCreateRoutine ? "Close" : "+")</button>
<button class="primary" @onclick="ToggleCreate">@(ShowCreateRoutine ? "x" : "+")</button>
</header>
@if (ActiveRun is null)