Skip to content

Commit

Permalink
Merge branch 'release/4.1.9'
Browse files Browse the repository at this point in the history
* release/4.1.9:
  Fixed the model property passed to the slug component for topics. Added a v-cloak to the topic and tag edit forms
  • Loading branch information
austintoddj committed Mar 7, 2019
2 parents ced5273 + 1d78b9e commit 37e3492
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion resources/views/components/forms/topic/create.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<input type="hidden" name="id" hidden value="{{ $data['id'] }}">

<slug inline-template>
<div>
<div v-cloak>
<div class="form-group row my-5">
<div class="col-lg-12">
<input type="text" name="name" v-model="name" title="Name"
Expand Down
4 changes: 2 additions & 2 deletions resources/views/components/forms/topic/edit.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
@method('PUT')
@csrf

<slug :entity="{{ $data['topic'] }}" inline-template>
<div>
<slug :model="{{ $data['topic'] }}" inline-template>
<div v-cloak>
<div class="form-group row my-5">
<div class="col-lg-12">
<input type="text" name="name" v-model="name" value="{{ $data['topic']->name }}"
Expand Down

0 comments on commit 37e3492

Please sign in to comment.