rht
This commit is contained in:
parent
e580f0ea44
commit
e7013895ef
|
@ -170,12 +170,12 @@ export default function MindEditor({ id }: { id?: string }) {
|
|||
|
||||
return (
|
||||
|
||||
<div className={` flex-col flex border rounded-xl overflow-hidden`}>
|
||||
<div className={` flex-col flex `}>
|
||||
{canEdit && taxonomies && (
|
||||
<Form
|
||||
form={form}
|
||||
className=" bg-white p-4 ">
|
||||
<div className="flex items-center justify-between gap-4">
|
||||
className=" bg-white p-4 border-b">
|
||||
<div className="flex items-center justify-between gap-4">
|
||||
<div className="flex items-center gap-4">
|
||||
{taxonomies.map((tax, index) => (
|
||||
<Form.Item
|
||||
|
@ -224,7 +224,7 @@ export default function MindEditor({ id }: { id?: string }) {
|
|||
isLoading && (
|
||||
<div
|
||||
className="py-64 justify-center flex"
|
||||
style={{ height: "calc(100vh - 287px)" }}>
|
||||
style={{ height: "calc(100vh - 271px)" }}>
|
||||
<Spin size="large"></Spin>
|
||||
</div>
|
||||
)
|
||||
|
@ -233,7 +233,7 @@ export default function MindEditor({ id }: { id?: string }) {
|
|||
!post && id && !isLoading && (
|
||||
<div
|
||||
className="py-64"
|
||||
style={{ height: "calc(100vh - 287px)" }}>
|
||||
style={{ height: "calc(100vh - 271px)" }}>
|
||||
<Empty></Empty>
|
||||
</div>
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue