fix
This commit is contained in:
parent
4fb68fdefb
commit
77a9c46425
|
|
@ -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}
|
||||
|
|
|
|||
|
|
@ -1,2 +0,0 @@
|
|||
export { PanelBody } from "@/comps/tab/parts/PanelBody";
|
||||
export { PanelHeader } from "@/comps/tab/parts/PanelHead";
|
||||
|
|
@ -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,
|
||||
|
|
@ -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";
|
||||
|
|
|
|||
Loading…
Reference in New Issue