fix getting the current version

This commit is contained in:
Maurits Lourens 2022-02-22 10:10:41 +01:00
parent 102e2c43a5
commit 225bea021d
1 changed files with 5 additions and 3 deletions

View File

@ -30,9 +30,11 @@ export const buildOtherEndpoints = API => ({
* Gets the version of the installed Budibase environment.
*/
getBudibaseVersion: async () => {
return await API.get({
url: "/api/dev/version",
}).version
return (
await API.get({
url: "/api/dev/version",
})
).version
},
/**