From 23471752e4f8ae469b18839a989c206bd0154d33 Mon Sep 17 00:00:00 2001 From: Philippe PITTOLI Date: Tue, 16 Apr 2024 00:03:22 +0200 Subject: [PATCH] Display "Update Resource Record" in the update modal. --- src/App/Page/Zone.purs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App/Page/Zone.purs b/src/App/Page/Zone.purs index 19da279..52a5151 100644 --- a/src/App/Page/Zone.purs +++ b/src/App/Page/Zone.purs @@ -611,7 +611,7 @@ render state title = case state.rr_modal of NoModal -> "Error: no modal should be displayed" NewRRModal t_ -> "New " <> show t_ <> " resource record" - UpdateRRModal -> "Update RR " <> show state._currentRR.rrid + UpdateRRModal -> "Update " <> state._currentRR.rrtype <> " Resource Record" RemoveRRModal rr_id -> "Error: should display removal modal instead (for RR " <> show rr_id <> ")" foot = foot_ <> [Bulma.cancel_button CancelModal]