Show deleting button text when transitioning.

This commit is contained in:
Dillon Kearns 2022-08-08 05:10:03 -07:00
parent da4b651bb0
commit 7ae7932e8b

View File

@ -183,7 +183,14 @@ deleteForm =
[ Html.button
[ Attr.style "color" "red"
]
[ Html.text "Delete" ]
[ (if formState.isTransitioning then
"Deleting..."
else
"Delete"
)
|> Html.text
]
]
}
|> Form.hiddenKind ( "kind", "delete" ) "Required"