Skip to content

Commit

Permalink
[OPIK-298] [UX improvements] Increase default amount of items per page (
Browse files Browse the repository at this point in the history
  • Loading branch information
andriidudar authored Nov 13, 2024
1 parent 1edbc02 commit 0fe9eb4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ const ExperimentItemsTab: React.FunctionComponent<ExperimentItemsTabProps> = ({
updateType: "replaceIn",
});

const [size = 10, setSize] = useQueryParam("size", NumberParam, {
const [size = 100, setSize] = useQueryParam("size", NumberParam, {
updateType: "replaceIn",
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export const TracesSpansTab: React.FC<TracesSpansTabProps> = ({
updateType: "replaceIn",
});

const [size = 10, setSize] = useQueryParam("size", NumberParam, {
const [size = 100, setSize] = useQueryParam("size", NumberParam, {
updateType: "replaceIn",
});

Expand Down

0 comments on commit 0fe9eb4

Please sign in to comment.