Skip to content

Commit

Permalink
#311 더보기 여부에 대한 세팅 blade 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
xharpenParksuhyeon committed Aug 22, 2021
1 parent 2bd0639 commit 56369cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/Widgets/QnaList/views/settings.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
<div class="form-group">
<label>더보기</label>
<select name="using_more" class="form-control">
<option value="using_more" @if(\Illuminate\Support\Arr::get($args, 'using_more', 'true') === 'true') selected="selected" @endif>사용</option>
<option value="using_more" @if(\Illuminate\Support\Arr::get($args, 'using_more', 'true') === 'false') selected="selected" @endif>사용안함</option>
<option value="true" @if(\Illuminate\Support\Arr::get($args, 'using_more', 'true') === 'true') selected="selected" @endif>사용</option>
<option value="false" @if(\Illuminate\Support\Arr::get($args, 'using_more', 'true') === 'false') selected="selected" @endif>사용안함</option>
</select>
</div>

Expand Down

0 comments on commit 56369cd

Please sign in to comment.