Skip to content

Commit

Permalink
Installation
Browse files Browse the repository at this point in the history
  • Loading branch information
kreaweb.be committed Apr 15, 2024
1 parent d64b3a3 commit 4f5353c
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion app/Providers/AppServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ public function boot(): void
// Log-Viewer : grant access (in production) to developer
// -----------------------------------------------------------------------
LogViewer::auth(function ($request) {
return true;
return auth()->user() && auth()->user()->is_developer;
});

Expand Down
1 change: 0 additions & 1 deletion public/build/assets/app-Be5yQES4.css

This file was deleted.

1 change: 1 addition & 0 deletions public/build/assets/app-DFWw3OHI.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/build/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"resources/css/app.css": {
"file": "assets/app-Be5yQES4.css",
"file": "assets/app-DFWw3OHI.css",
"src": "resources/css/app.css",
"isEntry": true
},
Expand Down
2 changes: 1 addition & 1 deletion resources/views/components/switchable-team.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</div>

@if (Auth::user()->isCurrentTeam($team))
<x-ts-icon icon="check" class="size-5 ms-2 text-emerald-600" />
<x-ts-icon icon="circle-check" class="size-5 ms-2 text-emerald-600" />
@endif
</div>
</x-dynamic-component>
Expand Down
4 changes: 2 additions & 2 deletions resources/views/teams/team-member-manager.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class="relative px-4 py-3 inline-flex w-full rounded focus:z-10 focus:outline-no
</div>

@if ($addTeamMemberForm['role'] == $role->key)
<x-ts-icon icon="check" class="size-5 inline-block ms-2 text-emerald-600" />
<x-ts-icon icon="circle-check" class="size-5 inline-block ms-2 text-emerald-600" />
@endif
</div>

Expand Down Expand Up @@ -200,7 +200,7 @@ class="relative px-4 py-3 inline-flex w-full rounded focus:z-10 focus:outline-no
</div>

@if ($currentRole == $role->key)
<x-ts-icon icon="check" class="size-5 inline-block ms-2 text-emerald-600" />
<x-ts-icon icon="circle-check" class="size-5 inline-block ms-2 text-emerald-600" />
@endif
</div>

Expand Down

0 comments on commit 4f5353c

Please sign in to comment.