Skip to content

Commit

Permalink
fix(prompts): remove extraneous $ before idUrl property (#1185)
Browse files Browse the repository at this point in the history
  • Loading branch information
itinerare authored Jan 9, 2025
1 parent 812a4c6 commit e54b742
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/views/prompts/_prompt_entry.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
<x-admin-edit title="Prompt" :object="$prompt" />
<div class="mb-3">
@if (isset($isPage))
<h1 class="mb-0">{!! $prompt->name !!} <a href="{{ $prompt->$idUrl }}" class="world-entry-search text-muted"><i class="fas fa-search"></i></a></h1>
<h1 class="mb-0">{!! $prompt->name !!} <a href="{{ $prompt->idUrl }}" class="world-entry-search text-muted"><i class="fas fa-search"></i></a></h1>
@else
<h2 class="mb-0"><a href="{{ $prompt->$idUrl }}">{!! $prompt->name !!}</a></h2>
<h2 class="mb-0"><a href="{{ $prompt->idUrl }}">{!! $prompt->name !!}</a></h2>
@endif
@if ($prompt->prompt_category_id)
<div><strong>Category: </strong>{!! $prompt->category->displayName !!}</div>
Expand Down

0 comments on commit e54b742

Please sign in to comment.