mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
c06ef4d1d7
* style: scrollbar added in profile summary and sidebar * style: scrollbar added in modals * style: scrollbar added in project setting screens * style: scrollbar added in workspace and profile settings * style: scrollbar added in dropdowns and filters
38 lines
1.2 KiB
TypeScript
38 lines
1.2 KiB
TypeScript
import { ReactElement } from "react";
|
|
import { observer } from "mobx-react";
|
|
// layouts
|
|
import { AppLayout } from "layouts/app-layout";
|
|
import { ProjectSettingLayout } from "layouts/settings-layout";
|
|
// components
|
|
import { PageHead } from "components/core";
|
|
import { ProjectSettingsLabelList } from "components/labels";
|
|
import { ProjectSettingHeader } from "components/headers";
|
|
// types
|
|
import { NextPageWithLayout } from "lib/types";
|
|
// hooks
|
|
import { useProject } from "hooks/store";
|
|
|
|
const LabelsSettingsPage: NextPageWithLayout = observer(() => {
|
|
const { currentProjectDetails } = useProject();
|
|
const pageTitle = currentProjectDetails?.name ? `${currentProjectDetails?.name} - Labels` : undefined;
|
|
|
|
return (
|
|
<>
|
|
<PageHead title={pageTitle} />
|
|
<div className="w-full gap-10 overflow-y-auto py-8 pr-9">
|
|
<ProjectSettingsLabelList />
|
|
</div>
|
|
</>
|
|
);
|
|
});
|
|
|
|
LabelsSettingsPage.getLayout = function getLayout(page: ReactElement) {
|
|
return (
|
|
<AppLayout withProjectWrapper header={<ProjectSettingHeader title="Labels Settings" />}>
|
|
<ProjectSettingLayout>{page}</ProjectSettingLayout>
|
|
</AppLayout>
|
|
);
|
|
};
|
|
|
|
export default LabelsSettingsPage;
|