bug fix for handlebars expression, show budibase version in updates panel
This commit is contained in:
parent
ddf75aae04
commit
e37e5d137c
|
@ -58,7 +58,7 @@
|
||||||
const updateValue = val => {
|
const updateValue = val => {
|
||||||
valid = isValid(readableToRuntimeBinding(bindings, val))
|
valid = isValid(readableToRuntimeBinding(bindings, val))
|
||||||
if (valid) {
|
if (valid) {
|
||||||
dispatch("change", value)
|
dispatch("change", val)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -32,7 +32,7 @@ export const buildOtherEndpoints = API => ({
|
||||||
getBudibaseVersion: async () => {
|
getBudibaseVersion: async () => {
|
||||||
return await API.get({
|
return await API.get({
|
||||||
url: "/api/dev/version",
|
url: "/api/dev/version",
|
||||||
})
|
}).version
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -118,5 +118,7 @@ exports.revert = async ctx => {
|
||||||
}
|
}
|
||||||
|
|
||||||
exports.getBudibaseVersion = async ctx => {
|
exports.getBudibaseVersion = async ctx => {
|
||||||
ctx.body = require("../../../package.json").version
|
ctx.body = {
|
||||||
|
version: require("../../../package.json").version,
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue