Skip to content
This repository was archived by the owner on Oct 16, 2023. It is now read-only.

Commit cc27602

Browse files
authored
Merge pull request #11 from alexjustesen/just-a-couple-small-things
Change some label text
2 parents 19de99e + bd6dc96 commit cc27602

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Resources/ActivityResource.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ public static function form(Form $form): Form
2929
return $form
3030
->schema([
3131
Forms\Components\TextInput::make('causer_type'),
32-
Forms\Components\TextInput::make('causer_id'),
32+
Forms\Components\TextInput::make('causer_id')->label('Causer ID'),
3333
Forms\Components\TextInput::make('subject_type'),
34-
Forms\Components\TextInput::make('subject_id'),
34+
Forms\Components\TextInput::make('subject_id')->label('Subject ID'),
3535
Forms\Components\TextInput::make('description')->columnSpan(2),
3636
Forms\Components\KeyValue::make('properties.attributes'),
3737
Forms\Components\KeyValue::make('properties.old'),
@@ -75,7 +75,7 @@ public static function table(Table $table): Table
7575
return $resource::getUrl('edit', ['record' => $record->subject]) ?? null;
7676
}, shouldOpenInNewTab: true),
7777
Tables\Columns\TextColumn::make('created_at')
78-
->label('Log Date & Time')
78+
->label('Logged at')
7979
->dateTime()
8080
->sortable(),
8181
])

0 commit comments

Comments
 (0)