Skip to content

Commit

Permalink
fix for repeater edit - page detail layout retain value
Browse files Browse the repository at this point in the history
  • Loading branch information
KarelBrijs committed May 15, 2019
1 parent 1d51ff0 commit abb9c3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/backend/content/repeater/edit.blade.php
Expand Up @@ -202,7 +202,7 @@
@foreach($pageViews as $template => $page)
<optgroup label="Template: '{{ $template }}'">
@foreach($page['files'] as $file)
<option value="{{ $page['hintpath'] . '::templates.' . $template . '.' . $file }}" @if($repeater->content['actions']['detail'] == 'true') @if($repeater->content['actions']['detail']['page'] == $page['hintpath'] . '::templates.' . $template . '.' . $file) selected @endif @endif>{{ $file }} - {{ $template }}</option>
<option value="{{ $page['hintpath'] . '::templates.' . $template . '.' . $file }}" @if($repeater->content['actions']['detail'] !== 'false') @if($repeater->content['actions']['detail']['page'] == $page['hintpath'] . '::templates.' . $template . '.' . $file) selected @endif @endif>{{ $file }} - {{ $template }}</option>
@endforeach
</optgroup>
@endforeach
Expand Down

0 comments on commit abb9c3e

Please sign in to comment.