RubyGems
npm
Organizations
Log in
Sign up
npm
@afeefa/vue-app
Versions diffs
0.0.82 → 0.0.83
@afeefa/vue-app 0.0.82 → 0.0.83
Sign up to get
free
protection for your applications and to get access to all the features.
Files changed (3)
hide
show
package/.afeefa/package/release/version.txt
+1
-1
package/package.json
+1
-1
package/src/components/ADatePicker.vue
+2
-0
package/.afeefa/package/release/version.txt
CHANGED
Viewed
@@ -1 +1 @@
1
-
0.0.
82
1
+
0.0.
83
package/package.json
CHANGED
Viewed
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "@afeefa/vue-app",
3
-
"version": "0.0.
82
",
3
+
"version": "0.0.
83
",
4
4
"description": "",
5
5
"author": "Afeefa Kollektiv <kollektiv@afeefa.de>",
6
6
"license": "MIT",
package/src/components/ADatePicker.vue
CHANGED
Viewed
@@ -51,6 +51,8 @@ export default class ADatePicker extends Mixins(ComponentWidthMixin) {
51
51
created () {
52
52
if (this.value) {
53
53
this.value_ = this.value
54
+
} else {
55
+
this.value_Changed() // force validation if date is null
54
56
}
55
57
this.$emit('input', this.value_)
56
58
}