Browse Source

Fix access tile in overview tab throwing error when attempting to navigate to access tab

pull/7019/head
Andrew Kingston 4 years ago
parent
commit
5994cd3fed
  1. 2
      packages/builder/src/pages/builder/portal/overview/[application]/index.svelte

2
packages/builder/src/pages/builder/portal/overview/[application]/index.svelte

@ -66,7 +66,7 @@
selectedApp?.status === AppStatus.DEPLOYED && latestDeployments?.length > 0
$: appUrl = `${window.origin}/app${selectedApp?.url}`
$: tabs = ["Overview", "Automation History", "Backups", "Settings"]
$: tabs = ["Overview", "Access", "Automation History", "Settings"]
$: selectedTab = "Overview"
const backToAppList = () => {

Loading…
Cancel
Save