Correct cookie field label (#1837)

This commit is contained in:
Akash Hiremath 2023-03-29 15:30:33 +05:30 committed by GitHub
parent adc1cfe888
commit a98fce7e92
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -57,7 +57,7 @@ defmodule LivebookWeb.SessionLive.AttachedLive do
>
<div class="flex flex-col space-y-4">
<.text_field field={f[:name]} label="Name" placeholder={name_placeholder()} />
<.text_field field={f[:cookie]} label="Name" placeholder="mycookie" />
<.text_field field={f[:cookie]} label="Cookie" placeholder="mycookie" />
</div>
<button class="mt-5 button-base button-blue" type="submit" disabled={not data_valid?(@data)}>
<%= if(matching_runtime?(@current_runtime, @data), do: "Reconnect", else: "Connect") %>