From 21f3046e825498f1c0123a77e4b30327797d8041 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonatan=20K=C5=82osko?= Date: Tue, 26 Sep 2023 09:39:20 +0700 Subject: [PATCH] Remove border from plain text output --- lib/livebook_web/live/output.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/livebook_web/live/output.ex b/lib/livebook_web/live/output.ex index 8daa1fb48..c3828340c 100644 --- a/lib/livebook_web/live/output.ex +++ b/lib/livebook_web/live/output.ex @@ -37,7 +37,7 @@ defmodule LivebookWeb.Output do """ end - defp border?(%{type: type}) when type in [:terminal_text, :plain_text], do: true + defp border?(%{type: :terminal_text}), do: true defp border?(%{type: :error, context: {:interrupt, _, _}}), do: false defp border?(%{type: :error}), do: true defp border?(%{type: :grid, boxed: boxed}), do: boxed