Merge pull request #923 from Budibase/fix-change-app-name

Fix bug with changing app name
This commit is contained in:
Martin McKeaveney 2020-12-15 13:53:12 +00:00 committed by GitHub
commit 23b4bab1ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@
import api from "builderStore/api" import api from "builderStore/api"
async function updateApplication(data) { async function updateApplication(data) {
const response = await api.put(`/api/${$store.appId}`, data) const response = await api.put(`/api/applications/${$store.appId}`, data)
const app = await response.json() const app = await response.json()
store.update(state => { store.update(state => {
state = { state = {