diff --git a/comps/form/field/FieldInput.tsx b/comps/form/field/FieldInput.tsx
index ad23475..200fb48 100755
--- a/comps/form/field/FieldInput.tsx
+++ b/comps/form/field/FieldInput.tsx
@@ -130,79 +130,81 @@ export const FieldInput: FC<{
`
)}
>
- {prefix && prefix !== "" ? (
-
- {prefix}
-
- ) : (
- <>>
- )}
{fm.status === "loading" ? (
) : (
-
- {not_ready ? (
- not_ready
- ) : (
- <>
- {type_field === "custom" && arg.custom ? (
- <>{custom}>
- ) : (
- <>
- {type_field === "link" && (
-
- )}
- {["date", "input"].includes(type_field) ? (
-
- ) : ["single-option"].includes(type_field) ? (
-
- ) : ["multi-option"].includes(type_field) ? (
- arg.sub_type === "table-edit" ? (
- table_edit
- ) : (
-
- )
- ) : (
- <>{isValidElement(type_field) && type_field}>
- )}
- >
- )}
- >
- )}
-
- )}
- {suffix && suffix !== "" ? (
-
- {suffix}
-
- ) : (
- <>>
+ >
+ {prefix}
+
+ ) : (
+ <>>
+ )}
+
+ {not_ready ? (
+ not_ready
+ ) : (
+ <>
+ {type_field === "custom" && arg.custom ? (
+ <>{custom}>
+ ) : (
+ <>
+ {type_field === "link" && (
+
+ )}
+ {["date", "input"].includes(type_field) ? (
+
+ ) : ["single-option"].includes(type_field) ? (
+
+ ) : ["multi-option"].includes(type_field) ? (
+ arg.sub_type === "table-edit" ? (
+ table_edit
+ ) : (
+
+ )
+ ) : (
+ <>{isValidElement(type_field) && type_field}>
+ )}
+ >
+ )}
+ >
+ )}
+
+ {suffix && suffix !== "" ? (
+
+ {suffix}
+
+ ) : (
+ <>>
+ )}
+ >
)}
);