Skip to content

Commit

Permalink
refactor(DashboardChartSummaryChart): adjust groups display in the …
Browse files Browse the repository at this point in the history
…chart dropdown

This is a required quick-fix to display only 4 groups in the `DashboardChartSummaryChart` dropdown.

See: BEDS-845
  • Loading branch information
benji-bitfly committed Nov 14, 2024
1 parent 310860a commit e3f79e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions frontend/.vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"BcPageWrapper",
"BcTablePager",
"BcToggle",
"DashboardChartSummaryChart",
"DashboardChartSummaryChartFilter",
"DashboardGroupManagementModal",
"DashboardTableSummaryDetails",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const groups = computed(() => {
overview.value.groups.filter(g => !!g.count),
[ g => g.name.toLowerCase() ],
'asc',
)
).slice(0, 4)
})
const selectedGroups = ref<number[]>([])
watch(
Expand Down

0 comments on commit e3f79e5

Please sign in to comment.