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();
|
||||
http
|
||||
.get(config.API.meetingById(personalId.value))
|
||||
.then((res) => {
|
||||
const dataApi = res.data.result;
|
||||
.then(async (res) => {
|
||||
const dataApi = await res.data.result;
|
||||
data.title = dataApi.title;
|
||||
data.rounded = dataApi.round;
|
||||
data.consider = dataApi.result;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue