Skip to content

Commit

Permalink
change wording
Browse files Browse the repository at this point in the history
  • Loading branch information
wh1te909 committed Oct 29, 2023
1 parent 96086d0 commit 0bdc841
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/components/FileBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@
</q-menu>
</q-btn>
<!-- integrations -->
<q-btn size="md" dense no-caps flat label="Integrations">
<q-btn size="md" dense no-caps flat label="Reporting">
<q-menu auto-close>
<q-list
v-if="
Expand Down
14 changes: 9 additions & 5 deletions src/views/DashboardView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@
>
<q-spinner size="40px" color="primary" />
</div>
<div v-else class="q-pa-sm q-gutter-sm scroll" style="height: 85vh; overflow: initial;">
<div
v-else
class="q-pa-sm q-gutter-sm scroll"
style="height: 85vh; overflow: initial"
>
<q-list dense class="rounded-borders">
<q-item
clickable
Expand Down Expand Up @@ -163,7 +167,7 @@
runURLAction(
props.node.id,
action.id,
props.node.children ? 'client' : 'site'
props.node.children ? 'client' : 'site',
)
"
>
Expand Down Expand Up @@ -196,9 +200,9 @@
"
>
<q-item-section side>
<q-icon name="integration_instructions" />
<q-icon name="analytics" />
</q-item-section>
<q-item-section>Integrations</q-item-section>
<q-item-section>Reporting</q-item-section>
<q-item-section side>
<q-icon name="keyboard_arrow_right" />
</q-item-section>
Expand Down Expand Up @@ -816,7 +820,7 @@ export default {
this.$axios.get("/core/urlaction/").then((r) => {
if (r.data.length === 0) {
this.notifyWarning(
"No URL Actions configured. Go to Settings > Global Settings > URL Actions"
"No URL Actions configured. Go to Settings > Global Settings > URL Actions",
);
return;
}
Expand Down

0 comments on commit 0bdc841

Please sign in to comment.