@afeefa/vue-app 0.0.118 → 0.0.119

Sign up to get free protection for your applications and to get access to all the features.
@@ -1 +1 @@
1
- 0.0.118
1
+ 0.0.119
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@afeefa/vue-app",
3
- "version": "0.0.118",
3
+ "version": "0.0.119",
4
4
  "description": "",
5
5
  "author": "Afeefa Kollektiv <kollektiv@afeefa.de>",
6
6
  "license": "MIT",
@@ -70,7 +70,7 @@ export default class AAutocomplete extends Vue {
70
70
  }
71
71
 
72
72
  if (a instanceof Model && b instanceof Model) {
73
- return a.id === b.id && a.type === b.type
73
+ return a.equals(b)
74
74
  }
75
75
 
76
76
  return JSON.stringify(a) === JSON.stringify(b)
@@ -49,6 +49,7 @@ export default class ATextField extends Mixins(ComponentWidthMixin) {
49
49
  value = value.toString()
50
50
  }
51
51
  this.internalValue = value || ''
52
+ this.validate()
52
53
  }
53
54
 
54
55
  @Watch('value')