mirror of
https://github.com/makeplane/plane.git
synced 2026-05-18 13:15:59 +02:00
fix: format
This commit is contained in:
@@ -81,7 +81,7 @@ function ApiTokensPage({ params }: Route.ComponentProps) {
|
||||
</div>
|
||||
) : (
|
||||
<div className="flex h-full w-full flex-col">
|
||||
<div className="h-full w-full flex items-center justify-center">
|
||||
<div className="flex h-full w-full items-center justify-center">
|
||||
<EmptyStateCompact
|
||||
assetKey="token"
|
||||
title={t("settings_empty_state.tokens.title")}
|
||||
|
||||
@@ -16,7 +16,7 @@ export function APITokenSettingsLoader(props: Props) {
|
||||
<section className="w-full overflow-y-auto">
|
||||
<div className="mb-2 flex items-center justify-between border-b border-subtle pb-3.5">
|
||||
<h3 className="text-xl font-medium">{title}</h3>
|
||||
<span className="h-8 w-28 bg-layer-1 rounded-sm" />
|
||||
<span className="h-8 w-28 rounded-sm bg-layer-1" />
|
||||
</div>
|
||||
<div className="divide-y-[0.5px] divide-subtle-1">
|
||||
{range(2).map((i) => (
|
||||
|
||||
@@ -172,23 +172,23 @@ export const DEFAULT_GLOBAL_VIEWS_LIST: {
|
||||
key: TStaticViewTypes;
|
||||
i18n_label: string;
|
||||
}[] = [
|
||||
{
|
||||
key: "all-issues",
|
||||
i18n_label: "default_global_view.all_issues",
|
||||
},
|
||||
{
|
||||
key: "assigned",
|
||||
i18n_label: "default_global_view.assigned",
|
||||
},
|
||||
{
|
||||
key: "created",
|
||||
i18n_label: "default_global_view.created",
|
||||
},
|
||||
{
|
||||
key: "subscribed",
|
||||
i18n_label: "default_global_view.subscribed",
|
||||
},
|
||||
];
|
||||
{
|
||||
key: "all-issues",
|
||||
i18n_label: "default_global_view.all_issues",
|
||||
},
|
||||
{
|
||||
key: "assigned",
|
||||
i18n_label: "default_global_view.assigned",
|
||||
},
|
||||
{
|
||||
key: "created",
|
||||
i18n_label: "default_global_view.created",
|
||||
},
|
||||
{
|
||||
key: "subscribed",
|
||||
i18n_label: "default_global_view.subscribed",
|
||||
},
|
||||
];
|
||||
|
||||
export interface IWorkspaceSidebarNavigationItem {
|
||||
key: string;
|
||||
|
||||
Reference in New Issue
Block a user