mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
7a4ee509da
* chore: duplicate inbox issue header improvement * chore: snooze inbox issue header action improvement * fix: project inbox exception error * chore: inbox issue modal improvement * chore: code refactor * chore: Updated the inbox issue mutation --------- Co-authored-by: guru_sainath <gurusainath007@gmail.com>
30 lines
800 B
TypeScript
30 lines
800 B
TypeScript
import { FC } from "react";
|
|
import { observer } from "mobx-react";
|
|
import { TIssue } from "@plane/types";
|
|
import { Input } from "@plane/ui";
|
|
|
|
type TInboxIssueTitle = {
|
|
data: Partial<TIssue>;
|
|
handleData: (issueKey: keyof Partial<TIssue>, issueValue: Partial<TIssue>[keyof Partial<TIssue>]) => void;
|
|
};
|
|
|
|
export const InboxIssueTitle: FC<TInboxIssueTitle> = observer((props) => {
|
|
const { data, handleData } = props;
|
|
|
|
return (
|
|
<div className="relative flex flex-wrap gap-2 items-center">
|
|
<Input
|
|
id="name"
|
|
name="name"
|
|
type="text"
|
|
value={data?.name}
|
|
onChange={(e) => handleData("name", e.target.value)}
|
|
placeholder="Title"
|
|
className="w-full resize-none text-xl"
|
|
maxLength={255}
|
|
required
|
|
/>
|
|
</div>
|
|
);
|
|
});
|