Skip to content

Commit

Permalink
Fix fieldtype Vue component issues (#156)
Browse files Browse the repository at this point in the history
* Fix #155, #120

* Undo line break
  • Loading branch information
ncla authored Aug 27, 2022
1 parent 805fcbe commit 9543ba5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/js/ResponsiveFieldtype.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
:values="value"
:meta="meta"
:errors="errors"
:trackDirtyState="false"
@updated="updated($event)"
>
<div slot-scope="{ setFieldValue, setFieldMeta }">
Expand Down Expand Up @@ -57,7 +58,6 @@ export default {
methods: {
updated(data) {
const value = Object.assign({}, data);
this.value = value;
this.update(value);
},
},
Expand Down

0 comments on commit 9543ba5

Please sign in to comment.