Skip to content

Commit

Permalink
charting stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
sadnub committed May 31, 2023
1 parent caf8f9e commit 4d781fb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
1 change: 1 addition & 0 deletions src/ee/reporting/components/ReportTemplateForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -357,6 +357,7 @@ watch(tab, (newValue) => {
} else if (newValue === props.templateType) {
editor.value?.setModel(templateModel);
} else if (newValue === "css") {
splitter.value = 0;
editor.value?.setModel(cssModel);
}
});
Expand Down
13 changes: 5 additions & 8 deletions src/views/DashboardView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -188,14 +188,11 @@
<q-item
clickable
v-if="
($integrations &&
props.node.children &&
$integrations.clientMenuIntegrations &&
$integrations.clientMenuIntegrations.length > 0) ||
($integrations &&
!props.node.children &&
$integrations.siteMenuIntegrations &&
$integrations.siteMenuIntegrations.length > 0)
(props.node.children &&
$integrations?.clientMenuIntegrations?.length >
0) ||
(!props.node.children &&
$integrations?.siteMenuIntegrations.length > 0)
"
>
<q-item-section side>
Expand Down

0 comments on commit 4d781fb

Please sign in to comment.