Skip to content

Commit 7a25ea9

Browse files
committed
Testing
1 parent 5d7a0ae commit 7a25ea9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

resources/views/dashboard/incidents/edit.blade.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@
5454
<div class="form-group">
5555
<label for="incident-stick">{{ trans('forms.incidents.stick_status') }}</label>
5656
<select name="stickied" id="incident-stick" class="form-control">
57-
<option value='1' {{ $incident->stickied === true ? 'selected' : null }}>{{ trans('forms.incidents.stickied') }}</option>
58-
<option value='0' {{ $incident->stickied === false ? 'selected' : null }}>{{ trans('forms.incidents.not_stickied') }}</option>
57+
<option value='1' test='{{ $incident->stickied }}' {{ $incident->stickied == true ? 'selected' : null }}>{{ trans('forms.incidents.stickied') }}</option>
58+
<option value='0' test='{{ $incident->stickied }}' {{ $incident->stickied == false ? 'selected' : null }}>{{ trans('forms.incidents.not_stickied') }}</option>
5959
</select>
6060
</div>
6161
@if($incident->component)

0 commit comments

Comments
 (0)