Skip to content

Commit

Permalink
#311 설정 페이지 read_count name 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
xharpenParksuhyeon committed Aug 22, 2021
1 parent 2f459d6 commit a8a59a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/Widgets/QnaList/views/settings.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<option value="recently_created" @if(array_get($args, 'order_type') == 'recently_created') selected="selected" @endif >{{ xe_trans('board::recentlyCreated') }}</option>
<option value="recently_updated" @if(array_get($args, 'order_type') == 'recently_updated') selected="selected" @endif >{{ xe_trans('board::recentlyUpdated') }}</option>
<option value="assent_count" @if(array_get($args, 'order_type') == 'assent_count') selected="selected" @endif >{{xe_trans('board::assentOrder')}}</option>
<option value="assent_count" @if(array_get($args, 'order_type') == 'read_count') selected="selected" @endif >{{xe_trans('board::read_count')}}</option>
<option value="read_count" @if(array_get($args, 'order_type') == 'read_count') selected="selected" @endif >{{xe_trans('board::read_count')}}</option>
<option value="random" @if(array_get($args, 'order_type') == 'random') selected="selected" @endif >{{xe_trans('board::random')}}</option>
</select>
</div>
Expand Down

0 comments on commit a8a59a5

Please sign in to comment.