fix
This commit is contained in:
parent
4fb68fdefb
commit
77a9c46425
|
|
@ -120,6 +120,7 @@ export const TableEdit: FC<{
|
||||||
const key = props.column.key;
|
const key = props.column.key;
|
||||||
return (
|
return (
|
||||||
<PassProp
|
<PassProp
|
||||||
|
internal_key={props.rowIdx}
|
||||||
key={props.rowIdx}
|
key={props.rowIdx}
|
||||||
idx={props.rowIdx}
|
idx={props.rowIdx}
|
||||||
row={props.row}
|
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 { useLocal } from "lib/utils/use-local";
|
||||||
import get from "lodash.get";
|
import get from "lodash.get";
|
||||||
import { FC, ReactNode, useEffect } from "react";
|
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 }) => {
|
export const PanelTab: FC<PTProp> = ({ header, body, tab, PassProp, item }) => {
|
||||||
const local = useLocal<PTLocalInternal>({
|
const local = useLocal<PTLocalInternal>({
|
||||||
mode: "" as any,
|
mode: "" as any,
|
||||||
|
|
@ -109,7 +109,6 @@ export {
|
||||||
registerSession,
|
registerSession,
|
||||||
} from "@/preset/login/utils/register";
|
} from "@/preset/login/utils/register";
|
||||||
|
|
||||||
|
|
||||||
export { Card } from "@/comps/custom/Card";
|
export { Card } from "@/comps/custom/Card";
|
||||||
|
|
||||||
/** Layout */
|
/** Layout */
|
||||||
|
|
@ -122,7 +121,7 @@ export { Menu, MenuIcon } from "@/preset/menu/Menu";
|
||||||
export { ShowHidePanel } from "@/comps/custom/ShowHidePanel";
|
export { ShowHidePanel } from "@/comps/custom/ShowHidePanel";
|
||||||
export { PanelBody } from "@/comps/tab/parts/PanelBody";
|
export { PanelBody } from "@/comps/tab/parts/PanelBody";
|
||||||
export { PanelHeader } from "@/comps/tab/parts/PanelHead";
|
export { PanelHeader } from "@/comps/tab/parts/PanelHead";
|
||||||
export { PanelTab } from "@/comps/tab/Tab";
|
export { PanelTab } from "@/comps/tab/parts/PanelTab";
|
||||||
|
|
||||||
/*Popup*/
|
/*Popup*/
|
||||||
export { Popup } from "@/comps/popup/PopUp";
|
export { Popup } from "@/comps/popup/PopUp";
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue