"test/vscode:/vscode.git/clone" did not exist on "65ea9194b649d122feacef4aed0ead959d6f7d87"
Commit 48ac4d9f authored by Timothy J. Baek's avatar Timothy J. Baek
Browse files

fix

parent a43cb1eb
...@@ -21,6 +21,16 @@ ...@@ -21,6 +21,16 @@
export let tools = {}; export let tools = {};
export let onClose: Function; export let onClose: Function;
$: tools = Object.fromEntries(
Object.keys(tools).map((toolId) => [
toolId,
{
...tools[toolId],
enabled: selectedToolIds.includes(toolId)
}
])
);
let show = false; let show = false;
</script> </script>
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment