Merge pull request #2643 from brkcvn/master

Added variable in Modal Add New File
This commit is contained in:
Burak Civan 2022-09-28 11:42:47 +03:00 committed by GitHub
commit 33718dbf38
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -228,6 +228,7 @@ export default {
'#efef32'
],
min_date: false,
selected_card: null
}
},
@ -288,7 +289,13 @@ export default {
.catch(error => {
});
},
}
},
watch: {
'selected_card': function (newVal, oldVal) {
this.form.card_id = newVal;
},
},
})
});
}