Skip to content

Commit

Permalink
Fix: remote cell init (#339)
Browse files Browse the repository at this point in the history
  • Loading branch information
cristineguadelupe authored Sep 12, 2023
1 parent fe541ec commit 22b5ba5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/kino/remote_ execution_cell.ex
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ defmodule Kino.RemoteExecutionCell do
fields = %{
"assign_to" => attrs["assign_to"] || "",
"node" => attrs["node"] || "",
"cookie" => attrs["cookie"],
"use_cookie_secret" => Map.get(attrs, "use_cookie_secret", true),
"cookie_secret" => attrs["cookie_secret"]
"cookie" => attrs["cookie"] || "",
"cookie_secret" => attrs["cookie_secret"] || "",
"use_cookie_secret" => Map.get(attrs, "use_cookie_secret", true)
}

ctx = assign(ctx, fields: fields)
Expand Down

0 comments on commit 22b5ba5

Please sign in to comment.