Sync dashboard hero chips and update gitignore
All checks were successful
CI / build-and-deploy (push) Successful in 2m10s
All checks were successful
CI / build-and-deploy (push) Successful in 2m10s
This commit is contained in:
15
.gitignore
vendored
15
.gitignore
vendored
@@ -2,9 +2,22 @@ node_modules
|
||||
.next
|
||||
dist
|
||||
coverage
|
||||
|
||||
.env
|
||||
.env.local
|
||||
.env.*.local
|
||||
|
||||
uploads
|
||||
public/uploads
|
||||
prisma/dev.db
|
||||
|
||||
prisma/dev.db
|
||||
prisma/*.db
|
||||
prisma/*.db-journal
|
||||
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
pnpm-debug.log*
|
||||
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
@@ -1785,13 +1785,13 @@ export function DashboardShell({
|
||||
label={`Abos monatlich: ${currencyFormatter.format(totals.subscriptions)}`}
|
||||
sx={{ bgcolor: alpha("#FFFFFF", 0.12), color: "white" }}
|
||||
/>
|
||||
{isCompactLayout && currentPeriod ? (
|
||||
{currentPeriod ? (
|
||||
<Chip
|
||||
label={currentPeriod.name}
|
||||
sx={{ bgcolor: alpha("#FFFFFF", 0.12), color: "white" }}
|
||||
/>
|
||||
) : null}
|
||||
{isCompactLayout && currentPeriod ? (
|
||||
{currentPeriod ? (
|
||||
<Chip
|
||||
label={formatPeriodRange(currentPeriod.startsAt, currentPeriod.endsAt)}
|
||||
sx={{ bgcolor: alpha("#FFFFFF", 0.12), color: "white" }}
|
||||
|
||||
Reference in New Issue
Block a user