Skip to content

Commit

Permalink
Merge branch 'master' into chore/fix-svelte-warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
adrinr authored Dec 30, 2024
2 parents 67f511d + 521e1c1 commit 0919b4f
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -133,11 +133,7 @@ export const deriveStores = (context: StoreContext): DerivedDatasourceStore => {
type = ($datasource as any).value?.datasource?.type
}
// Handle calculation views
if (
type === "viewV2" &&
"type" in $definition &&
$definition?.type === ViewV2Type.CALCULATION
) {
if (type === "viewV2" && $definition?.type === ViewV2Type.CALCULATION) {
return false
}
return ["table", "viewV2", "link"].includes(type)
Expand Down

0 comments on commit 0919b4f

Please sign in to comment.