Skip to content

Commit f7bcd73

Browse files
authored
Merge pull request galaxyproject#20626 from martenson/admin-job-limit
[25.0] fix Admin job limit query
2 parents d130d7f + c261463 commit f7bcd73

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

client/src/components/admin/JobsTable.vue

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,4 +158,7 @@ export default {
158158
top: 0;
159159
width: 100%;
160160
}
161+
.jobs-table-wrapper {
162+
padding-bottom: 1em;
163+
}
161164
</style>

client/src/components/providers/JobProvider.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,10 @@ export function jobsProvider(ctx, callback, extraParams = {}) {
5151
const { root, ...requestParams } = ctx;
5252
const apiUrl = `${root}api/jobs`;
5353
const cleanParams = cleanPaginationParameters(requestParams);
54-
const promise = axios.get(apiUrl, { params: { ...cleanParams, ...extraParams } });
54+
const promise = axios.get(apiUrl, {
55+
params: { ...cleanParams, ...extraParams },
56+
paramsSerializer: { indexes: null },
57+
});
5558

5659
// Must return a promise that resolves to an array of items
5760
return promise.then((data) => {

0 commit comments

Comments
 (0)