Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
enesemini committed Jan 3, 2025
1 parent 468ecee commit 326be71
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 192 deletions.
58 changes: 0 additions & 58 deletions resources/views/components/dashboard/media.blade.php

This file was deleted.

58 changes: 0 additions & 58 deletions resources/views/components/dashboard/recent-activity.blade.php

This file was deleted.

66 changes: 0 additions & 66 deletions resources/views/components/dashboard/users.blade.php

This file was deleted.

5 changes: 0 additions & 5 deletions resources/views/livewire/dashboard.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,4 @@

<x-aura::dashboard.quick-actions cols="6"/>

<x-aura::dashboard.users cols="4"/>

<x-aura::dashboard.media cols="4"/>

<x-aura::dashboard.recent-activity cols="4"/>
</div>
6 changes: 1 addition & 5 deletions src/Livewire/BookmarkPage.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,7 @@ public function getIsBookmarkedProperty()
$bookmarkUrls = array_column($bookmarks, 'url');
$key = array_search($this->site['url'], $bookmarkUrls);

if ($key !== false) {
return false;
} else {
return true;
}
return $key !== false;
}

public function mount($site)
Expand Down

0 comments on commit 326be71

Please sign in to comment.