Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
mokhosh authored and github-actions[bot] committed Nov 29, 2023
1 parent 2a20b5a commit 856399b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/Concerns/HasEditRecordModal.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ trait HasEditRecordModal

protected string $editModalWidth = '2xl';

protected string $editModalSaveButtonLabel = "Save";
protected string $editModalSaveButtonLabel = 'Save';

protected string $editModalCancelButtonLabel = "Cancel";
protected string $editModalCancelButtonLabel = 'Cancel';

public function recordClicked(int $recordId, array $data): void
{
Expand Down Expand Up @@ -54,7 +54,7 @@ protected function editRecord(int $recordId, array $data, array $state): void
//
}

protected function getEditModalFormSchema(int|null $recordId): array
protected function getEditModalFormSchema(?int $recordId): array
{
return [];
}
Expand Down
2 changes: 1 addition & 1 deletion src/Pages/KanbanBoard.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@

class KanbanBoard extends Page implements HasForms
{
use HasStatusChange;
use HasEditRecordModal;
use HasStatusChange;

protected static ?string $navigationIcon = 'heroicon-o-document-text';

Expand Down

0 comments on commit 856399b

Please sign in to comment.