CSR-480: remove unnecessary await/async
This commit is contained in:
parent
6164be582b
commit
168a4fe5aa
1 changed files with 2 additions and 2 deletions
|
|
@ -59,8 +59,8 @@ export default {
|
|||
get: function() {
|
||||
return this.modelValue;
|
||||
},
|
||||
set: async function(returnedAnswer) {
|
||||
const isNewModelValueComplete = await this.getNewModelValue(returnedAnswer);
|
||||
set: function(returnedAnswer) {
|
||||
const isNewModelValueComplete = this.getNewModelValue(returnedAnswer);
|
||||
|
||||
if (isNewModelValueComplete) {
|
||||
this.$emit("update:modelValue", isNewModelValueComplete);
|
||||
|
|
|
|||
Loading…
Reference in a new issue