Skip to content

Commit a46ba64

Browse files
committed
Corrected incorrect value for red score in control -make- file
1 parent 3f4426e commit a46ba64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/views/controls/make.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158
<div class="cell-lg-6 cell-md-10">
159159
<input type="radio" data-role="radio" name="score" value="3" data-role="radio" data-append="<font color='green'>{{ trans('common.green') }}</font>" {{ $control->score===3 ? "checked" : "" }} />
160160
<input type="radio" data-role="radio" name="score" value="2" data-role="radio" data-append="<font color='orange'>{{ trans('common.orange') }}</font>" {{ $control->score===2 ? "checked" : "" }} />
161-
<input type="radio" data-role="radio" name="score" value="2" data-role="radio" data-append="<font color='red'>{{ trans('common.red') }}</font>" {{ $control->score===1 ? "checked" : "" }} />
161+
<input type="radio" data-role="radio" name="score" value="1" data-role="radio" data-append="<font color='red'>{{ trans('common.red') }}</font>" {{ $control->score===1 ? "checked" : "" }} />
162162
</div>
163163
</div>
164164
@if ((Auth::User()->role === 1)||(Auth::User()->role === 2))

0 commit comments

Comments
 (0)