Skip to content

Commit

Permalink
Installation
Browse files Browse the repository at this point in the history
  • Loading branch information
Marc Geurts committed Jan 23, 2024
1 parent fbd8ce8 commit a7ca8f7
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions database/seeders/UserAndTeamSeeder.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ public function run()
'firstname' => '_',
'surname' => 'Administrator',
'email' => '[email protected]',
'is_developer' => true,
])
->withPersonalTeam()
->create();
Expand Down
1 change: 0 additions & 1 deletion public/build/assets/app-UvAlGzUb.css

This file was deleted.

1 change: 1 addition & 0 deletions public/build/assets/app-x7u6LSbq.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-UvAlGzUb.css",
"file": "assets/app-x7u6LSbq.css",
"isEntry": true,
"src": "resources/css/app.css"
},
Expand Down
2 changes: 1 addition & 1 deletion public/tabler/tabler-sprite-nostroke.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion resources/views/livewire/backups/manage.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
</x-button.primary>
<x-button.danger wire:click="confirmDeletion('{{ $backup['file_name'] }}')">
<x-icon.tabler icon="trash-filled" class="mr-2" />
<x-icon.tabler icon="trash" class="mr-2" />
{{ __('backup.delete') }}
</x-button.danger>
</div>
Expand Down
2 changes: 1 addition & 1 deletion resources/views/livewire/people/partners.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
@if (auth()->user()->hasPermission('couple:delete'))
<x-button.danger class="!p-2" title="{{ __('app.delete') }} {{ __('app.delete_relationship') }}"
wire:click="confirmDeletion({{ $couple->id }} , '{{ $couple->name }}')">
<x-icon.tabler icon="trash-filled" class="!size-4" />
<x-icon.tabler icon="trash" class="!size-4" />
</x-button.danger>
@endif
</div>
Expand Down
4 changes: 2 additions & 2 deletions resources/views/livewire/people/profile.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
@if ($person->isDeletable())
<div class="flex-grow min-w-max max-w-min flex-1 text-end">
<x-button.danger class="!p-2" title="{{ __('person.delete_person') }}" wire:click="confirmDeletion()">
<x-icon.tabler icon="trash-filled" class="!size-4" />
<x-icon.tabler icon="trash" class="!size-4" />
</x-button.danger>
</div>
@endif
Expand Down Expand Up @@ -57,7 +57,7 @@
<!-- image -->
<div class="grid p-2 justify-center">
<x-image.photo :person="$person" class="max-w-96" />
<livewire:people.photos :person="$person" class="max-w-96" />
</div>
<!-- lifetime -->
Expand Down

0 comments on commit a7ca8f7

Please sign in to comment.