Better errors for protocol inputs.
This commit is contained in:
parent
15e43dea3b
commit
30fcfb8ce9
@ -29,7 +29,7 @@ error_to_paragraph v = Bulma.error_message (Bulma.p $ show_error_title v)
|
|||||||
ValidationDNS.VEPriority min max n -> Bulma.p $ "Priority should have a value between " <> show min <> " and " <> show max
|
ValidationDNS.VEPriority min max n -> Bulma.p $ "Priority should have a value between " <> show min <> " and " <> show max
|
||||||
<> ", current value: " <> show n <> "."
|
<> ", current value: " <> show n <> "."
|
||||||
ValidationDNS.VESRV err -> maybe default_error show_error_domain err.error
|
ValidationDNS.VESRV err -> maybe default_error show_error_domain err.error
|
||||||
ValidationDNS.VEProtocol err -> maybe default_error show_error_protocol err.error
|
ValidationDNS.VEProtocol err -> maybe protocol_error show_error_protocol err.error
|
||||||
ValidationDNS.VEPort min max n -> Bulma.p $ "Port should have a value between " <> show min <> " and " <> show max
|
ValidationDNS.VEPort min max n -> Bulma.p $ "Port should have a value between " <> show min <> " and " <> show max
|
||||||
<> ", current value: " <> show n <> "."
|
<> ", current value: " <> show n <> "."
|
||||||
ValidationDNS.VEWeight min max n -> Bulma.p $ "Weight should have a value between " <> show min <> " and " <> show max
|
ValidationDNS.VEWeight min max n -> Bulma.p $ "Weight should have a value between " <> show min <> " and " <> show max
|
||||||
@ -44,6 +44,7 @@ error_to_paragraph v = Bulma.error_message (Bulma.p $ show_error_title v)
|
|||||||
ValidationDNS.DKIMInvalidKeySize min max -> show_error_key_sizes min max
|
ValidationDNS.DKIMInvalidKeySize min max -> show_error_key_sizes min max
|
||||||
)
|
)
|
||||||
where default_error = Bulma.p ""
|
where default_error = Bulma.p ""
|
||||||
|
protocol_error = Bulma.p "Accepted protocols are: tcp, udp."
|
||||||
|
|
||||||
show_error_key_sizes :: forall w i. Int -> Int -> HH.HTML w i
|
show_error_key_sizes :: forall w i. Int -> Int -> HH.HTML w i
|
||||||
show_error_key_sizes min max
|
show_error_key_sizes min max
|
||||||
|
Loading…
Reference in New Issue
Block a user