mirror of
https://github.com/appwrite/console.git
synced 2026-06-06 19:27:48 +00:00
Change name from builder to studio
This commit is contained in:
@@ -26,7 +26,7 @@
|
||||
on:click={() => {
|
||||
isOpen = false;
|
||||
}}
|
||||
>{#if $isSmallViewport}Builder{/if}</ActionMenu.Item.Anchor>
|
||||
>{#if $isSmallViewport}Studio{/if}</ActionMenu.Item.Anchor>
|
||||
<Divider />
|
||||
<ActionMenu.Item.Anchor
|
||||
href={`${base}/project-${project.$id}/auth`}
|
||||
|
||||
@@ -43,7 +43,7 @@
|
||||
|
||||
const showChat = writable(false);
|
||||
const pathnameWatcher = derived(page, ($page) => {
|
||||
if ($page.url.pathname.endsWith('builder')) {
|
||||
if ($page.url.pathname.endsWith('studio')) {
|
||||
showChat.set(true);
|
||||
}
|
||||
});
|
||||
|
||||
@@ -6,7 +6,7 @@ import { isStudio } from '$lib/system';
|
||||
|
||||
export const load: PageLoad = async ({ params }) => {
|
||||
if (isStudio) {
|
||||
redirect(302, `${base}/project-${params.project}/builder`);
|
||||
redirect(302, `${base}/project-${params.project}/studio`);
|
||||
}
|
||||
if (hasOnboardingDismissed(params.project)) {
|
||||
redirect(302, `${base}/project-${params.project}/overview`);
|
||||
|
||||
+1
-1
@@ -17,7 +17,7 @@
|
||||
const frameUrl = 'https://getbootstrap.com/docs/5.3/examples/blog/';
|
||||
|
||||
const projectId = page.params.project;
|
||||
const path = `${base}/project-${projectId}/builder`;
|
||||
const path = `${base}/project-${projectId}/studio`;
|
||||
const tabs = [
|
||||
{
|
||||
href: path,
|
||||
Reference in New Issue
Block a user