fix: CSM-001 done

This commit is contained in:
2026-05-06 19:33:54 +02:00
parent 3ce6010b87
commit d3f45ba0dd
16 changed files with 217 additions and 60 deletions

View File

@@ -267,7 +267,7 @@ defmodule BDS.UI.Workbench do
defp token_usage(_state, _usage), do: nil
defp normalize_type(type) when is_atom(type), do: type
defp normalize_type(type) when is_binary(type), do: String.to_atom(type)
defp normalize_type(type) when is_binary(type), do: String.to_existing_atom(type)
defp tab_ref(tab), do: {tab.type, tab.id}