Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
atmonshi authored and github-actions[bot] committed Feb 9, 2024
1 parent e409b9a commit 7a1a66e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/Filament/Pages/Popover.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,17 +49,17 @@ public function table(Table $table): Table
//->offset(10)
->popOverMaxWidth('none')
->icon('heroicon-o-chevron-right')
->content(fn ($record) => view('filament.test.user-card', ['record' => $record,'type' => 'name'])),
->content(fn ($record) => view('filament.test.user-card', ['record' => $record, 'type' => 'name'])),

PopoverColumn::make('email')
PopoverColumn::make('email')
->sortable()
->searchable()
->toggleable()
->trigger('click')
->placement('right')
->popOverMaxWidth('none')
->icon('heroicon-o-chevron-right')
->content(fn ($record) => view('filament.test.user-card', ['record' => $record,'type' => 'email'])),
->content(fn ($record) => view('filament.test.user-card', ['record' => $record, 'type' => 'email'])),
]);
}
}

0 comments on commit 7a1a66e

Please sign in to comment.