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

Commit

Permalink
Merge pull request #11 from alexjustesen/just-a-couple-small-things
Browse files Browse the repository at this point in the history
Change some label text
  • Loading branch information
alexjustesen authored Apr 12, 2022
2 parents 19de99e + bd6dc96 commit cc27602
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Resources/ActivityResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ public static function form(Form $form): Form
return $form
->schema([
Forms\Components\TextInput::make('causer_type'),
Forms\Components\TextInput::make('causer_id'),
Forms\Components\TextInput::make('causer_id')->label('Causer ID'),
Forms\Components\TextInput::make('subject_type'),
Forms\Components\TextInput::make('subject_id'),
Forms\Components\TextInput::make('subject_id')->label('Subject ID'),
Forms\Components\TextInput::make('description')->columnSpan(2),
Forms\Components\KeyValue::make('properties.attributes'),
Forms\Components\KeyValue::make('properties.old'),
Expand Down Expand Up @@ -75,7 +75,7 @@ public static function table(Table $table): Table
return $resource::getUrl('edit', ['record' => $record->subject]) ?? null;
}, shouldOpenInNewTab: true),
Tables\Columns\TextColumn::make('created_at')
->label('Log Date & Time')
->label('Logged at')
->dateTime()
->sortable(),
])
Expand Down

0 comments on commit cc27602

Please sign in to comment.