From c6a75111434a8ea9f15d4a48c87c8380d0bc49ba Mon Sep 17 00:00:00 2001 From: Philippe PITTOLI Date: Wed, 10 Apr 2024 14:48:02 +0200 Subject: [PATCH] Show 20 characters of the DKIM public key. --- 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 2de4b6b..e03f423 100644 --- a/src/App/Page/Zone.purs +++ b/src/App/Page/Zone.purs @@ -880,7 +880,7 @@ render_resources records -- , HH.td_ [ Bulma.p $ maybe "(default)" id rr.v ] -- For now, version isn't displayed. Assume DKIM1. HH.td_ [ Bulma.p $ maybe "" show dkim.h ] , HH.td_ [ Bulma.p $ maybe "" show dkim.k ] - , HH.td_ [ Bulma.p $ CP.take 5 dkim.p ] + , HH.td_ [ Bulma.p $ CP.take 20 dkim.p ] , HH.td_ [ Bulma.p $ fromMaybe "" dkim.n ] , if rr.readonly then HH.td_ [ Bulma.btn_readonly ]