-
Notifications
You must be signed in to change notification settings - Fork 191
fix: base paths #2386
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: base paths #2386
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,7 @@ | |
} | ||
</script> | ||
|
||
{#if show && $organization?.$id && $organization?.billingPlan === BillingPlan.FREE && !page.url.pathname.includes('/console/account')} | ||
{#if show && $organization?.$id && $organization?.billingPlan === BillingPlan.FREE && !page.url.pathname.includes(base + '/account')} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
<GradientBanner on:close={handleClose}> | ||
<Layout.Stack | ||
gap="m" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -82,7 +82,7 @@ | |
keys: ['g', 'p'], | ||
group: 'navigation', | ||
disabled: | ||
(page.url.pathname.includes('/console/organization-') && | ||
(page.url.pathname.includes(base + '/organization-') && | ||
!page.url.pathname.endsWith('/members') && | ||
!page.url.pathname.endsWith('/settings')) || | ||
!$canSeeProjects, | ||
|
@@ -335,11 +335,11 @@ | |
<Shell | ||
showSideNavigation={page.url.pathname !== '/' && | ||
!page?.params.organization && | ||
!page.url.pathname.includes('/console/account') && | ||
!page.url.pathname.includes('/console/card') && | ||
!page.url.pathname.includes('/console/onboarding')} | ||
showHeader={!page.url.pathname.includes('/console/onboarding/create-project')} | ||
showFooter={!page.url.pathname.includes('/console/onboarding/create-project')} | ||
!page.url.pathname.includes(base + '/account') && | ||
!page.url.pathname.includes(base + '/card') && | ||
!page.url.pathname.includes(base + '/onboarding')} | ||
showHeader={!page.url.pathname.includes(base + '/onboarding/create-project')} | ||
Comment on lines
337
to
+341
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. maybe here as well but not a priority. |
||
showFooter={!page.url.pathname.includes(base + '/onboarding/create-project')} | ||
selectedProject={page.data?.project}> | ||
<!-- <Header slot="header" />--> | ||
<slot /> | ||
|
Uh oh!
There was an error while loading. Please reload this page.