Skip to content

Commit

Permalink
Merge pull request #3223 from stobbsm/2.4
Browse files Browse the repository at this point in the history
Fixes Template not rendering when containing twig variables
  • Loading branch information
jbrooksuk committed Nov 23, 2018
2 parents 89debac + a05fec9 commit 4a6fd7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/dashboard/templates/edit.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
</div>
<div class="form-group">
<label>{{ trans('forms.incidents.templates.template') }}</label>
<textarea name="template[template]" id="cm-editor" class="form-control" rows="8" placeholder="{{ trans('forms.incidents.templates.template') }}">{{ $template->template }}</textarea>
<textarea v-pre name="template[template]" id="cm-editor" class="form-control" rows="8" placeholder="{{ trans('forms.incidents.templates.template') }}">{{ $template->template }}</textarea>
<span class="help-block">{!! trans('forms.incidents.templates.twig') !!}</span>
</div>
</fieldset>
Expand Down

0 comments on commit 4a6fd7d

Please sign in to comment.