Mark notebook as changed when hub secret is toggled (#2279)

This commit is contained in:
Jonatan Kłosko 2023-10-17 18:59:46 +02:00 committed by GitHub
parent e9e760c7da
commit eba249d045
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -886,6 +886,7 @@ defmodule Livebook.Session.Data do
|> with_actions()
|> set_secret(secret)
|> update_notebook_hub_secret_names()
|> set_dirty()
|> wrap_ok()
end
@ -894,6 +895,7 @@ defmodule Livebook.Session.Data do
|> with_actions()
|> unset_secret(secret_name)
|> update_notebook_hub_secret_names()
|> set_dirty()
|> wrap_ok()
end