Fixed bug where tag-targeting a calculation's base value would crash the sheet

This commit is contained in:
ThaumRystra
2025-01-16 20:32:30 +02:00
parent 0bf8fdc6d3
commit be47b90c32
5 changed files with 95 additions and 6 deletions

17
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,17 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Meteor: Test",
"type": "node",
"request": "launch",
"cwd": "${workspaceFolder}/app",
"runtimeExecutable": "npm",
"runtimeArgs": [
"run-script",
"test"
],
"outputCapture": "std",
}
]
}