Skip to content

Commit

Permalink
Fix/Diff stat icon color
Browse files Browse the repository at this point in the history
  • Loading branch information
mansoorkhan96 committed Mar 16, 2024
1 parent 9caf7d2 commit e2685ea
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
1 change: 1 addition & 0 deletions resources/views/components/diff-stats.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
icon="heroicon-m-plus-circle"
tag="a"
label="Insertions"
color="success"
/>

<span class="text-sm font-semibold">
Expand Down
11 changes: 7 additions & 4 deletions resources/views/revisions-page.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,13 @@ class="divide-y divide-gray-200 dark:divide-white/10"
'flex-auto truncate text-sm font-medium leading-6 group-hover:text-primary-600',
])
>
<span @class([
'text-primary-600' => $version->id === $this->version->id,
'font-normal text-gray-500 group-hover:text-primary-600 dark:text-gray-400',
])>
<span
@class([
'text-primary-600' => $version->id === $this->version->id,
'font-normal text-gray-500 group-hover:text-primary-600 dark:text-gray-400',
])
title="{{ __('filament-versionable::page.revision_by', ['name' => $version->user->name]) }}"
>
{{ __('filament-versionable::page.revision_by', ['name' => '']) }}
</span>

Expand Down

0 comments on commit e2685ea

Please sign in to comment.