feat: add dividers to period selector dropdown

This commit is contained in:
Usman Baig
2026-03-11 23:47:52 +01:00
parent eb872dbc5a
commit 136ceff962
2 changed files with 4 additions and 1 deletions

View File

@@ -513,9 +513,11 @@ export default function SiteDashboardPage() {
options={[
{ value: 'today', label: 'Today' },
{ value: '7', label: 'Last 7 days' },
{ value: 'week', label: 'This week' },
{ value: '30', label: 'Last 30 days' },
{ value: 'divider-1', label: '', divider: true },
{ value: 'week', label: 'This week' },
{ value: 'month', label: 'This month' },
{ value: 'divider-2', label: '', divider: true },
{ value: 'custom', label: 'Custom' },
]}
/>