Skip to content

Commit

Permalink
Merge pull request #383 from metrico/fix/cardinality_enabled_by_default
Browse files Browse the repository at this point in the history
fix: Cardinality active by default at GO backend
  • Loading branch information
jacovinus authored Dec 18, 2023
2 parents 747547d + 20eed08 commit 3820bcf
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions packages/main/views/Main/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,11 @@ export async function checkLocalAPI(
"Cardinal View",
true
);
LocalPluginsManagement().togglePlugin(
"Query Item",
"Cardinal View",
true
)
isReady = true;
} else {
setResponseType(ResponseEnum.NODE);
Expand All @@ -188,6 +193,11 @@ export async function checkLocalAPI(
"Cardinal View",
false
);
LocalPluginsManagement().togglePlugin(
"Query Item",
"Cardinal View",
false
)
isReady = true;
}
}
Expand Down

0 comments on commit 3820bcf

Please sign in to comment.