This commit is contained in:
rizrmd 2024-07-17 10:18:29 +00:00
parent 4fb68fdefb
commit 77a9c46425
4 changed files with 3 additions and 5 deletions

View File

@ -120,6 +120,7 @@ export const TableEdit: FC<{
const key = props.column.key;
return (
<PassProp
internal_key={props.rowIdx}
key={props.rowIdx}
idx={props.rowIdx}
row={props.row}

View File

@ -1,2 +0,0 @@
export { PanelBody } from "@/comps/tab/parts/PanelBody";
export { PanelHeader } from "@/comps/tab/parts/PanelHead";

View File

@ -1,7 +1,7 @@
import { useLocal } from "lib/utils/use-local";
import get from "lodash.get";
import { FC, ReactNode, useEffect } from "react";
import { PTLocalInternal, PTProp } from "./utils/typings";
import { PTLocalInternal, PTProp } from "../utils/typings";
export const PanelTab: FC<PTProp> = ({ header, body, tab, PassProp, item }) => {
const local = useLocal<PTLocalInternal>({
mode: "" as any,

View File

@ -109,7 +109,6 @@ export {
registerSession,
} from "@/preset/login/utils/register";
export { Card } from "@/comps/custom/Card";
/** Layout */
@ -122,7 +121,7 @@ export { Menu, MenuIcon } from "@/preset/menu/Menu";
export { ShowHidePanel } from "@/comps/custom/ShowHidePanel";
export { PanelBody } from "@/comps/tab/parts/PanelBody";
export { PanelHeader } from "@/comps/tab/parts/PanelHead";
export { PanelTab } from "@/comps/tab/Tab";
export { PanelTab } from "@/comps/tab/parts/PanelTab";
/*Popup*/
export { Popup } from "@/comps/popup/PopUp";