Update button text for toggling exercise and routine creation to use 'x' instead of 'Close'
This commit is contained in:
@@ -12,7 +12,7 @@
|
||||
<header class="page-header">
|
||||
<h1>Exercises</h1>
|
||||
<p>Create and manage your exercise list.</p>
|
||||
<button class="primary" @onclick="ToggleCreate">@(ShowCreateExercise ? "Close" : "+")</button>
|
||||
<button class="primary" @onclick="ToggleCreate">@(ShowCreateExercise ? "x" : "+")</button>
|
||||
</header>
|
||||
|
||||
@if (ShowCreateExercise)
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user