mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
fix: build issues
This commit is contained in:
parent
466f69a0b9
commit
6a6ab5544a
@ -93,7 +93,7 @@ export const AddComment: React.FC<Props> = observer((props) => {
|
|||||||
customClassName="p-2"
|
customClassName="p-2"
|
||||||
editorContentCustomClassNames="min-h-[35px]"
|
editorContentCustomClassNames="min-h-[35px]"
|
||||||
debouncedUpdatesEnabled={false}
|
debouncedUpdatesEnabled={false}
|
||||||
onChange={(comment_json: Object, comment_html: string) => {
|
onChange={(comment_json: unknown, comment_html: string) => {
|
||||||
onChange(comment_html);
|
onChange(comment_html);
|
||||||
}}
|
}}
|
||||||
submitButton={
|
submitButton={
|
||||||
|
@ -115,7 +115,7 @@ export const CommentCard: React.FC<Props> = observer((props) => {
|
|||||||
value={value}
|
value={value}
|
||||||
debouncedUpdatesEnabled={false}
|
debouncedUpdatesEnabled={false}
|
||||||
customClassName="min-h-[50px] p-3 shadow-sm"
|
customClassName="min-h-[50px] p-3 shadow-sm"
|
||||||
onChange={(comment_json: Object, comment_html: string) => {
|
onChange={(comment_json: unknown, comment_html: string) => {
|
||||||
onChange(comment_html);
|
onChange(comment_html);
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
|
@ -94,7 +94,7 @@ export const PeekOverviewIssueProperties: React.FC<Props> = ({ issueDetails, mod
|
|||||||
>
|
>
|
||||||
{priority && (
|
{priority && (
|
||||||
<span className="-my-1 grid place-items-center">
|
<span className="-my-1 grid place-items-center">
|
||||||
<Icon iconName={priority?.icon!} />
|
<Icon iconName={priority?.icon} />
|
||||||
</span>
|
</span>
|
||||||
)}
|
)}
|
||||||
<span>{priority?.title ?? "None"}</span>
|
<span>{priority?.title ?? "None"}</span>
|
||||||
|
@ -11,9 +11,8 @@ import { FullScreenPeekView, SidePeekView } from "components/issues/peek-overvie
|
|||||||
// lib
|
// lib
|
||||||
import { useMobxStore } from "lib/mobx/store-provider";
|
import { useMobxStore } from "lib/mobx/store-provider";
|
||||||
|
|
||||||
type Props = {};
|
|
||||||
|
|
||||||
export const IssuePeekOverview: React.FC<Props> = observer(() => {
|
export const IssuePeekOverview: React.FC = observer(() => {
|
||||||
// states
|
// states
|
||||||
const [isSidePeekOpen, setIsSidePeekOpen] = useState(false);
|
const [isSidePeekOpen, setIsSidePeekOpen] = useState(false);
|
||||||
const [isModalPeekOpen, setIsModalPeekOpen] = useState(false);
|
const [isModalPeekOpen, setIsModalPeekOpen] = useState(false);
|
||||||
|
Loading…
Reference in New Issue
Block a user