Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
ilestis authored and github-actions[bot] committed Aug 8, 2024
1 parent 5e21c9a commit 23d4d97
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 13 deletions.
6 changes: 3 additions & 3 deletions app/Http/Controllers/Crud/BookmarkController.php
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,9 @@ public function update(StoreBookmark $request, Campaign $campaign, Bookmark $boo


$link = '<a href="' . route(
$this->view . '.show',
[$campaign, $bookmark->id]
)
$this->view . '.show',
[$campaign, $bookmark->id]
)
. '">' . $bookmark->name . '</a>';
$success = __('general.success.updated', [
'name' => $link
Expand Down
4 changes: 2 additions & 2 deletions app/Models/Bookmark.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,13 @@ class Bookmark extends Model
use HasCampaign;
use HasFactory;
use HasFilters;
use LastSync;
use Orderable;
use Privatable;
use Sanitizable;
use Searchable;
use Sortable;
use Orderable;
use Taggable;
use LastSync;

protected $fillable = [
'campaign_id',
Expand Down
2 changes: 1 addition & 1 deletion app/Models/Campaign.php
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ public function hasPluginTheme(): bool
*/
public function getDefaultVisibilityAttribute(): mixed
{
return Arr::get($this->settings, 'default_visibility', 'all');
return Arr::get($this->settings, 'default_visibility', 'all');
}

/**
Expand Down
4 changes: 2 additions & 2 deletions app/Models/Image.php
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ public function mentions(): HasMany
return $this->hasMany(ImageMention::class, 'image_id', 'id')
->with('entity')
->with('post')
;
;
}

public function inEntities(): array
Expand Down Expand Up @@ -244,7 +244,7 @@ public function scopeDefaultOrder(Builder $query): Builder
->orderBy('is_folder', 'desc')
->orderBy('updated_at', 'desc')
->orderBy('name', 'asc')
;
;
}

/**
Expand Down
1 change: 0 additions & 1 deletion app/Models/MapMarker.php
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,6 @@ protected function labelMarker(): string

/**
* Generate the marker's popup that is usually opened on hover
* @return ?string
*/
protected function popup(): ?string
{
Expand Down
1 change: 0 additions & 1 deletion app/Models/UserSetting.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

use App\User;
use Illuminate\Support\Arr;
use Illuminate\Support\Collection;
use Stevebauman\Purify\Facades\Purify;

/**
Expand Down
1 change: 0 additions & 1 deletion app/Renderers/CalendarRenderer.php
Original file line number Diff line number Diff line change
Expand Up @@ -1025,7 +1025,6 @@ protected function setMonth(int $month): self

/**
* Split the date into segments. Handle negative years
* @return array
*/
protected function splitDate(string $date): array
{
Expand Down
1 change: 0 additions & 1 deletion app/Services/Entity/Connections/MapService.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
use App\Traits\CampaignAware;
use App\Traits\EntityAware;
use Illuminate\Support\Arr;
use Illuminate\Support\Str;

class MapService
{
Expand Down
1 change: 0 additions & 1 deletion app/Services/Entity/Connections/RelatedService.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
use App\Models\Character;
use App\Models\Conversation;
use App\Models\Entity;
use App\Models\Item;
use App\Models\Journal;
use App\Models\Location;
use App\Models\Map;
Expand Down

0 comments on commit 23d4d97

Please sign in to comment.