Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions frontend/bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@
"react-day-picker": "^9.14.0",
"react-dom": "^19.2.0",
"react-dropzone": "^15.0.0",
"react-highlight-words": "^0.21.0",
"react-hook-form": "^7.76.1",
"react-markdown": "^10.1.0",
"react-resizable-panels": "^4.11.2",
Expand Down Expand Up @@ -163,7 +162,6 @@
"@types/node": "^22.19.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.2",
"@types/react-highlight-words": "^0.20.0",
"@types/react-syntax-highlighter": "^15.5.13",
"@typescript/native-preview": "^7.0.0-dev.20260108.1",
"baseline-browser-mapping": "2.10.33",
Expand Down
1 change: 1 addition & 0 deletions frontend/src/components/icons/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ export {
HelpCircle as HelpIcon, // MdHelpOutline, MdOutlineQuestionMark
Home as HomeIcon, // HomeIcon (Heroicons)
Hourglass as HourglassIcon, // MdHourglassFull
Inbox as InboxIcon,
Info as InfoIcon, // MdInfoOutline, InfoIcon (Chakra/Octicons)
Key as KeyIcon, // MdKey
Layers as LayersIcon, // MdOutlineLayers
Expand Down
108 changes: 0 additions & 108 deletions frontend/src/components/misc/kowl-table.tsx

This file was deleted.

5 changes: 3 additions & 2 deletions frontend/src/components/pages/consumers/group-list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ import { columnMeta, readColumnMeta } from 'utils/data-table-column-meta';
import { appGlobal } from '../../../state/app-global';
import type { GroupDescription } from '../../../state/rest-interfaces';
import { setPageHeader } from '../../../state/ui-state';
import { DEFAULT_TABLE_PAGE_SIZE } from '../../constants';
import { BrokerList } from '../../misc/broker-list';
import { ShortNum } from '../../misc/short-num';
import { Alert, AlertDescription, AlertTitle } from '../../redpanda-ui/components/alert';
Expand Down Expand Up @@ -60,6 +59,8 @@ const groupIdFilterFn = (row: DataTableRow<GroupDescription>, _columnId: string,
}
};

const DEFAULT_PAGE_SIZE = 10;

const stateFilterFn = (row: DataTableRow<GroupDescription>, columnId: string, filterValues: string[]) => {
if (!filterValues?.length) {
return true;
Expand All @@ -84,7 +85,7 @@ const GroupList: FC = () => {
const [searchValue, setSearchValue] = useQueryState('q', parseAsString.withDefault(''));
const [stateFilter, setStateFilter] = useQueryState('state', parseAsArrayOf(parseAsString).withDefault([]));
const [pageIndex, setPageIndex] = useQueryState('page', parseAsInteger.withDefault(0));
const [pageSize, setPageSize] = useQueryState('pageSize', parseAsInteger.withDefault(DEFAULT_TABLE_PAGE_SIZE));
const [pageSize, setPageSize] = useQueryState('pageSize', parseAsInteger.withDefault(DEFAULT_PAGE_SIZE));
const [sortId, setSortId] = useQueryState('sortId', parseAsString.withDefault(''));
const [sortDesc, setSortDesc] = useQueryState('sortDesc', parseAsString.withDefault(''));

Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/pages/quotas/quotas-list.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ import { Quota_EntityType, Quota_ValueType } from '../../../protogen/redpanda/ap
import { prettyBytes, prettyNumber } from '../../../utils/utils';
import PageContent from '../../misc/page-content';

const DEFAULT_PAGE_SIZE = 50;
const DEFAULT_PAGE_SIZE = 10;

type QuotaRow = {
entityType: QuotaEntityDisplay;
Expand Down
Loading
Loading