Skip to content

Commit

Permalink
chore: fix code style
Browse files Browse the repository at this point in the history
  • Loading branch information
rahmanramsi authored and github-actions[bot] committed Jan 7, 2025
1 parent 4c182db commit 02326c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ public function table(Table $table): Table
->content(fn ($record) => $record->getMeta('review_for_author_editor') ? new HtmlString($record->getMeta('review_for_author_editor')) : '-'),
Placeholder::make('for_editor')
->label('For Editor')
->visible(fn() => auth()->user()->can('actAsEditor', $this->record))
->visible(fn () => auth()->user()->can('actAsEditor', $this->record))
->extraAttributes(['class' => 'prose'])
->content(fn ($record) => $record->getMeta('review_for_editor') ? new HtmlString($record->getMeta('review_for_editor')) : '-'),
]),
Expand Down
2 changes: 1 addition & 1 deletion lang/en/general.php
Original file line number Diff line number Diff line change
Expand Up @@ -995,5 +995,5 @@
'submission_setting.hide_from_timeline' => 'Hide from Timeline',
'files' => 'Files',
'mailing_address' => 'Mailing Address',
'slug_helper' => "Enter a unique URL-friendly identifier for this page. Use lowercase letters, numbers, dashes, and underscores only. For example, 'about-us' or 'contact-info'"
'slug_helper' => "Enter a unique URL-friendly identifier for this page. Use lowercase letters, numbers, dashes, and underscores only. For example, 'about-us' or 'contact-info'",
];

0 comments on commit 02326c5

Please sign in to comment.