From 10da0a2311a3a5610abcbdd3a77b3d075204f9f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Valim?= Date: Wed, 14 Dec 2022 21:06:04 +0100 Subject: [PATCH] Change message when there are no app secrets (#1587) --- lib/livebook_web/live/session_live.ex | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/lib/livebook_web/live/session_live.ex b/lib/livebook_web/live/session_live.ex index 774f22958..b8df279d1 100644 --- a/lib/livebook_web/live/session_live.ex +++ b/lib/livebook_web/live/session_live.ex @@ -640,7 +640,13 @@ defmodule LivebookWeb.SessionLive do

App secrets

- Toggle to share with this session + + <%= if @livebook_secrets == [] do %> + No secrets stored in Livebook so far + <% else %> + Toggle to share with this session + <% end %> +