Skip to content

Commit

Permalink
Merge pull request #17 from headerx/main
Browse files Browse the repository at this point in the history
more betterer styles
  • Loading branch information
inmanturbo authored Jan 30, 2024
2 parents edce0a1 + c4f0bd1 commit 63f9a8a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/views/api-token-manager.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
<div class="space-y-6">
@foreach ($this->user->tokens->sortBy('name') as $token)
<div class="flex items-center justify-between">
<div>
<div class="text-sm text-gray-400">
{{ $token->name ?? $token->client->name }}
</div>

Expand Down Expand Up @@ -139,7 +139,7 @@ class="w-full px-4 py-2 mt-4 font-mono text-sm text-gray-500 bg-gray-100 rounded
@foreach (Laravel\Jetstream\Jetstream::$permissions as $permission)
<label class="flex items-center">
<x-checkbox wire:model.defer="updateApiTokenForm.scopes" :value="$permission" />
<span class="ml-2 text-sm text-gray-600">{{ $permission }}</span>
<span class="ml-2 text-sm text-gray-600 dark:text-gray-400">{{ $permission }}</span>
</label>
@endforeach
</div>
Expand Down

0 comments on commit 63f9a8a

Please sign in to comment.