forked from github/plane
fix: breadcrumbs and tab updated (#1007)
This commit is contained in:
parent
86cb23777e
commit
443878994a
@ -821,7 +821,7 @@ export const CommandPalette: React.FC = () => {
|
|||||||
>
|
>
|
||||||
<div className="flex items-center gap-2 text-brand-secondary">
|
<div className="flex items-center gap-2 text-brand-secondary">
|
||||||
<SettingIcon className="h-4 w-4 text-brand-secondary" />
|
<SettingIcon className="h-4 w-4 text-brand-secondary" />
|
||||||
Billings and Plans
|
Billing and Plans
|
||||||
</div>
|
</div>
|
||||||
</Command.Item>
|
</Command.Item>
|
||||||
<Command.Item
|
<Command.Item
|
||||||
@ -839,7 +839,7 @@ export const CommandPalette: React.FC = () => {
|
|||||||
>
|
>
|
||||||
<div className="flex items-center gap-2 text-brand-secondary">
|
<div className="flex items-center gap-2 text-brand-secondary">
|
||||||
<SettingIcon className="h-4 w-4 text-brand-secondary" />
|
<SettingIcon className="h-4 w-4 text-brand-secondary" />
|
||||||
Import/Export
|
Import/ Export
|
||||||
</div>
|
</div>
|
||||||
</Command.Item>
|
</Command.Item>
|
||||||
</>
|
</>
|
||||||
|
@ -30,7 +30,7 @@ const SettingsNavbar: React.FC<Props> = ({ profilePage = false }) => {
|
|||||||
href: `/${workspaceSlug}/settings/integrations`,
|
href: `/${workspaceSlug}/settings/integrations`,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: "Import/Export",
|
label: "Import/ Export",
|
||||||
href: `/${workspaceSlug}/settings/import-export`,
|
href: `/${workspaceSlug}/settings/import-export`,
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
@ -222,7 +222,7 @@ const GeneralSettings: NextPage = () => {
|
|||||||
<div className="grid grid-cols-12 gap-4 sm:gap-16">
|
<div className="grid grid-cols-12 gap-4 sm:gap-16">
|
||||||
<div className="col-span-12 sm:col-span-6">
|
<div className="col-span-12 sm:col-span-6">
|
||||||
<h4 className="text-lg font-semibold">Cover Photo</h4>
|
<h4 className="text-lg font-semibold">Cover Photo</h4>
|
||||||
<p className="text-sm text-gray-500">
|
<p className="text-sm text-brand-secondary">
|
||||||
Select your cover photo from the given library.
|
Select your cover photo from the given library.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
@ -34,7 +34,7 @@ const BillingSettings: NextPage = () => {
|
|||||||
title={`${activeWorkspace?.name ?? "Workspace"}`}
|
title={`${activeWorkspace?.name ?? "Workspace"}`}
|
||||||
link={`/${workspaceSlug}`}
|
link={`/${workspaceSlug}`}
|
||||||
/>
|
/>
|
||||||
<BreadcrumbItem title="Members Settings" />
|
<BreadcrumbItem title="Billing & Plans Settings" />
|
||||||
</Breadcrumbs>
|
</Breadcrumbs>
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
|
@ -18,7 +18,7 @@ const ImportExport: NextPage = () => {
|
|||||||
breadcrumbs={
|
breadcrumbs={
|
||||||
<Breadcrumbs>
|
<Breadcrumbs>
|
||||||
<BreadcrumbItem title={`${workspaceSlug ?? "Workspace"}`} link={`/${workspaceSlug}`} />
|
<BreadcrumbItem title={`${workspaceSlug ?? "Workspace"}`} link={`/${workspaceSlug}`} />
|
||||||
<BreadcrumbItem title="Members Settings" />
|
<BreadcrumbItem title="Import/ Export Settings" />
|
||||||
</Breadcrumbs>
|
</Breadcrumbs>
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
|
Loading…
Reference in New Issue
Block a user