Skip to content

Commit

Permalink
Remove event registration build step.
Browse files Browse the repository at this point in the history
  • Loading branch information
dgoetzit committed Mar 4, 2024
1 parent de62ace commit dfb83e2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,6 @@ public function table(Table $table): Table
->badge()
->formatStateUsing(fn (?string $state): ?string => filled($state) ? ucfirst($state) : null)
->color('success'),
// TODO: Add requester column when implemented
// TextColumn::make('requester.name'),
// TextColumn::make('requested_at')
// ->dateTime()
// ->getStateUsing(fn (SurveySubmission $record): ?CarbonInterface => $record->requester ? $record->created_at : null),
])
->filters([
FormSubmissionStatusFilter::make(),
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,8 @@
"build:vite": "vite build",
"build:form": "(cd widgets/form && vite build)",
"build:survey": "(cd widgets/survey && vite build)",
"build:event-registration": "(cd widgets/event-registration && vite build)",
"build:service-request-form": "(cd widgets/service-request-form && vite build)",
"build:widgets": "npm run build:form && npm run build:survey && npm run build:event-registration && npm run build:service-request-form",
"build:widgets": "npm run build:form && npm run build:survey && npm run build:service-request-form",
"build:knowledge-management": "(cd portals/knowledge-management && vite build)",
"build:portals": "npm run build:knowledge-management",
"build": "npm run build:js-compile && npm run build:vite && npm run build:filament && npm run build:widgets && npm run build:portals",
Expand Down

0 comments on commit dfb83e2

Please sign in to comment.