Formatting.
This commit is contained in:
parent
c7c158dd84
commit
e8383653c1
|
@ -26,5 +26,5 @@ export default {
|
|||
get: apiCall("GET"),
|
||||
patch: apiCall("PATCH"),
|
||||
delete: apiCall("DELETE"),
|
||||
put: apiCall("PUT")
|
||||
put: apiCall("PUT"),
|
||||
}
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
roles: {},
|
||||
builder: {
|
||||
global: true,
|
||||
}
|
||||
},
|
||||
})
|
||||
notifier.success("Test user created")
|
||||
} catch (err) {
|
||||
|
|
|
@ -20,9 +20,7 @@
|
|||
{#if $auth.user}
|
||||
<div class="root">
|
||||
<div class="ui-nav">
|
||||
<div class="home-logo">
|
||||
<img src={Logo} alt="Budibase icon" />
|
||||
</div>
|
||||
<div class="home-logo"><img src={Logo} alt="Budibase icon" /></div>
|
||||
<div class="nav-section">
|
||||
<div class="nav-top">
|
||||
<Link icon={AppsIcon} title="Apps" href="/" active />
|
||||
|
|
|
@ -116,13 +116,7 @@ exports.serveComponentLibrary = async function(ctx) {
|
|||
componentLib += `-${COMP_LIB_BASE_APP_VERSION}`
|
||||
}
|
||||
const S3_URL = encodeURI(
|
||||
join(
|
||||
objectStoreUrl(),
|
||||
componentLib,
|
||||
ctx.query.library,
|
||||
"dist",
|
||||
"index.js"
|
||||
)
|
||||
join(objectStoreUrl(), componentLib, ctx.query.library, "dist", "index.js")
|
||||
)
|
||||
const response = await fetch(S3_URL)
|
||||
const body = await response.text()
|
||||
|
|
Loading…
Reference in New Issue