Fix publish action from command palette
This commit is contained in:
parent
5c65bc28e1
commit
d1a089f22c
|
@ -208,8 +208,8 @@
|
||||||
|
|
||||||
async function deployApp() {
|
async function deployApp() {
|
||||||
try {
|
try {
|
||||||
await API.deployAppChanges()
|
await API.publishAppChanges($store.appId)
|
||||||
notifications.success("Application published successfully")
|
notifications.success("App published successfully")
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
notifications.error("Error publishing app")
|
notifications.error("Error publishing app")
|
||||||
}
|
}
|
||||||
|
|
|
@ -87,7 +87,7 @@
|
||||||
try {
|
try {
|
||||||
publishing = true
|
publishing = true
|
||||||
await API.publishAppChanges($store.appId)
|
await API.publishAppChanges($store.appId)
|
||||||
notifications.send("App published", {
|
notifications.send("App published successfully", {
|
||||||
type: "success",
|
type: "success",
|
||||||
icon: "GlobeCheck",
|
icon: "GlobeCheck",
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue