I have below code, but after I click the link, it cannot open to new tab
Tables\Actions\Action::make('view') ->color('warning') ->openUrlInNewTab() // this line doesn't open new tab ->icon('heroicon-o-arrow-top-right-on-square') ->url(fn (): string => route('home')),
Tables\Actions\Action::make('view') ->color('warning') ->openUrlInNewTab() // this line doesn't open new tab ->icon('heroicon-o-arrow-top-right-on-square') ->url(fn (): string => route('home')),
Is this a bug or do we need to do some extra. If so, what should be..