1
0
Fork 0
mirror of synced 2024-10-01 01:28:51 +13:00

Load account portal url from environment

This commit is contained in:
Rory Powell 2021-10-01 16:12:07 +01:00
parent 1fc24e12e7
commit 61fcb67289

View file

@ -1,10 +1,11 @@
<script>
import { Modal, ModalContent, Button } from "@budibase/bbui"
import { admin } from "stores/portal"
let upgradeModal
const onConfirm = () => {
window.open("https://account.budibase.app/portal/install", "_blank")
window.open(`${$admin.accountPortalUrl}/portal/install`, "_blank")
}
</script>