Update to Livebook Teams (#1765)

This commit is contained in:
Alexandre de Souza 2023-03-09 17:04:29 -03:00 committed by GitHub
parent 5c106e81fa
commit 753f6fffaa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 3 additions and 7 deletions

View file

@ -89,13 +89,9 @@ defmodule LivebookWeb.Hub.NewLive do
</:headline>
</.card_item>
<.card_item id="enterprise" selected={@selected_type} title="Livebook Enterprise">
<.card_item id="enterprise" selected={@selected_type} title="Livebook Teams">
<:logo>
<img
src="/images/enterprise.png"
class="max-h-full max-w-[75%]"
alt="Livebook Enterprise logo"
/>
<img src="/images/teams.png" class="max-h-full max-w-[75%]" alt="Livebook Teams logo" />
</:logo>
<:headline>
Control access, manage secrets, and deploy notebooks within your team.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 24 KiB

BIN
static/images/teams.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

View file

@ -9,7 +9,7 @@ defmodule LivebookWeb.Hub.NewLiveTest do
{:ok, _view, html} = live(conn, ~p"/hub")
assert html =~ "Fly"
assert html =~ "Livebook Enterprise"
assert html =~ "Livebook Teams"
end
describe "fly" do