fix bug
This commit is contained in:
parent
21c4dabdf0
commit
d433ec98ca
1 changed files with 2 additions and 2 deletions
|
|
@ -62,8 +62,8 @@ function fetchData() {
|
||||||
showLoader();
|
showLoader();
|
||||||
http
|
http
|
||||||
.get(config.API.meetingById(personalId.value))
|
.get(config.API.meetingById(personalId.value))
|
||||||
.then((res) => {
|
.then(async (res) => {
|
||||||
const dataApi = res.data.result;
|
const dataApi = await res.data.result;
|
||||||
data.title = dataApi.title;
|
data.title = dataApi.title;
|
||||||
data.rounded = dataApi.round;
|
data.rounded = dataApi.round;
|
||||||
data.consider = dataApi.result;
|
data.consider = dataApi.result;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue