chore: bug fixes and improvement (#3434)

* fix: peek overview issue delete bug

* chore: create cycle workflow improvement

* chore: project setting improvement
This commit is contained in:
Anmol Singh Bhatia 2024-01-23 13:11:39 +05:30 committed by GitHub
parent 2986769f28
commit bb50df0dff
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 19 additions and 10 deletions

View file

@ -7,6 +7,8 @@ import useToast from "hooks/use-toast";
import EmojiIconPicker from "components/emoji-icon-picker";
import { ImagePickerPopover } from "components/core";
import { Button, CustomSelect, Input, TextArea } from "@plane/ui";
// icons
import { Lock } from "lucide-react";
// types
import { IProject, IWorkspace } from "@plane/types";
// helpers
@ -169,8 +171,10 @@ export const ProjectDetailsForm: FC<IProjectDetailsForm> = (props) => {
<div className="flex flex-col gap-1 truncate text-white">
<span className="truncate text-lg font-semibold">{watch("name")}</span>
<span className="flex items-center gap-2 text-sm">
<span>
{watch("identifier")} . {currentNetwork?.label}
<span>{watch("identifier")} .</span>
<span className="flex items-center gap-1.5">
{project.network === 0 && <Lock className="h-2.5 w-2.5 text-white " />}
{currentNetwork?.label}
</span>
</span>
</div>