mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-16 12:37:20 +00:00
added format command and added trailing commas to reduce conflicts
This commit is contained in:
@@ -190,8 +190,15 @@ type PropoverTableProps = Omit<EntityTableProps, "data"> & {
|
||||
container: ResponseObject;
|
||||
query: any;
|
||||
toggle: () => void;
|
||||
}
|
||||
const PopoverTable = ({ container, entity, query, toggle, onClickRow, onClickPage }: PropoverTableProps) => {
|
||||
};
|
||||
const PopoverTable = ({
|
||||
container,
|
||||
entity,
|
||||
query,
|
||||
toggle,
|
||||
onClickRow,
|
||||
onClickPage,
|
||||
}: PropoverTableProps) => {
|
||||
function handleNext() {
|
||||
if (query.limit * query.page < container.meta?.count) {
|
||||
onClickPage?.(query.page + 1);
|
||||
|
||||
Reference in New Issue
Block a user