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() {
|
get: function() {
|
||||||
return this.modelValue;
|
return this.modelValue;
|
||||||
},
|
},
|
||||||
set: async function(returnedAnswer) {
|
set: function(returnedAnswer) {
|
||||||
const isNewModelValueComplete = await this.getNewModelValue(returnedAnswer);
|
const isNewModelValueComplete = this.getNewModelValue(returnedAnswer);
|
||||||
|
|
||||||
if (isNewModelValueComplete) {
|
if (isNewModelValueComplete) {
|
||||||
this.$emit("update:modelValue", isNewModelValueComplete);
|
this.$emit("update:modelValue", isNewModelValueComplete);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue