Code style check
This commit is contained in:
parent
f3a1761299
commit
4cc1a85f25
|
@ -49,7 +49,7 @@
|
|||
newDeployments
|
||||
)
|
||||
if (pendingDeployments.length) {
|
||||
showErrorReasonModal(incomingDeployment.err)
|
||||
showErrorReasonModal(pendingDeployments[0].err)
|
||||
}
|
||||
}
|
||||
deployments = newDeployments
|
||||
|
|
|
@ -20,6 +20,6 @@ export function checkIncomingDeploymentStatus(current, incoming) {
|
|||
acc.push(incomingDeployment)
|
||||
}
|
||||
}
|
||||
return acc;
|
||||
return acc
|
||||
}, [])
|
||||
}
|
|
@ -5,7 +5,6 @@
|
|||
Icon,
|
||||
ActionMenu,
|
||||
MenuItem,
|
||||
ButtonGroup,
|
||||
StatusLight,
|
||||
} from "@budibase/bbui"
|
||||
import { processStringSync } from "@budibase/string-templates"
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<script>
|
||||
import { store, automationStore, allScreens } from "builderStore"
|
||||
import { store, automationStore } from "builderStore"
|
||||
import { roles, flags } from "stores/backend"
|
||||
import {
|
||||
Icon,
|
||||
|
@ -32,7 +32,7 @@
|
|||
let promise = getPackage()
|
||||
let unpublishModal
|
||||
let publishPopover
|
||||
let notPublishedPopover
|
||||
// let notPublishedPopover
|
||||
|
||||
$: enrichedApps = enrichApps($apps, $auth.user)
|
||||
const enrichApps = (apps, user) => {
|
||||
|
|
|
@ -356,7 +356,7 @@ exports.delete = async ctx => {
|
|||
appId = getProdAppID(appId)
|
||||
}
|
||||
|
||||
const db = ctx.query.unpublish ? getProdAppDB() : getAppDB();
|
||||
const db = ctx.query.unpublish ? getProdAppDB() : getAppDB()
|
||||
const result = await db.destroy()
|
||||
|
||||
/* istanbul ignore next */
|
||||
|
|
Loading…
Reference in New Issue