Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
Kim-the-Diamond authored and github-actions[bot] committed Aug 28, 2024
1 parent 0b7e2df commit b470eae
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
6 changes: 3 additions & 3 deletions config/press.php
Original file line number Diff line number Diff line change
Expand Up @@ -1165,12 +1165,12 @@
'admin_color' => 'fresh',
'use_ssl' => '0',
'show_admin_bar_front' => 'true',
env('WP_PREFIX', 'wp_') . 'capabilities' => serialize([
env('WP_PREFIX', 'wp_').'capabilities' => serialize([
'subscriber' => true,
]),
env('WP_PREFIX', 'wp_') . 'user_level' => '0',
env('WP_PREFIX', 'wp_').'user_level' => '0',
'dismissed_wp_pointers' => '',
env('WP_PREFIX', 'wp_') . 'dashboard_quick_press_last_post_id' => '0',
env('WP_PREFIX', 'wp_').'dashboard_quick_press_last_post_id' => '0',
'mm_sua_attachment_id' => '',

// locale
Expand Down
3 changes: 1 addition & 2 deletions packages/press/src/Resources/WpPageResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
use Filament\Tables\Actions\EditAction;
use Filament\Tables\Actions\ViewAction;
use Filament\Tables\Table;
use Illuminate\Database\Eloquent\Builder;
use Moox\Press\Models\WpPage;
use Moox\Press\Resources\WpPageResource\Pages;
use Moox\Press\Resources\WpPageResource\RelationManagers\WpPostMetaRelationManager;
Expand Down Expand Up @@ -384,7 +383,7 @@ public static function table(Table $table): Table
->actions([
ViewAction::make(),
EditAction::make(),
Action::make('Wp Edit')->url(fn($record): string => "/wp/wp-admin/post.php?post={$record->ID}&action=edit"),
Action::make('Wp Edit')->url(fn ($record): string => "/wp/wp-admin/post.php?post={$record->ID}&action=edit"),
])
->bulkActions([DeleteBulkAction::make()]);
}
Expand Down

0 comments on commit b470eae

Please sign in to comment.