Skip to content

Commit

Permalink
Merge pull request galaxyproject#17775 from davelopez/24.0_fix_missin…
Browse files Browse the repository at this point in the history
…g_keys_from_histories_list

[24.0] Add missing fields in histories listings
  • Loading branch information
jdavcs authored Mar 18, 2024
2 parents d7a8a67 + 2665b3e commit 799fde4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions client/src/components/Grid/configs/histories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ type SortKeyLiteral = "create_time" | "name" | "update_time" | undefined;
async function getData(offset: number, limit: number, search: string, sort_by: string, sort_desc: boolean) {
const { data, headers } = await historiesFetcher({
view: "summary",
keys: "create_time",
limit,
offset,
search,
Expand Down
1 change: 1 addition & 0 deletions client/src/components/Grid/configs/historiesPublished.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ type SortKeyLiteral = "name" | "update_time" | undefined;
async function getData(offset: number, limit: number, search: string, sort_by: string, sort_desc: boolean) {
const { data, headers } = await historiesFetcher({
view: "summary",
keys: "username",
limit,
offset,
search,
Expand Down

0 comments on commit 799fde4

Please sign in to comment.