main #1

Merged
jingrow merged 11 commits from main into v1 2025-07-18 22:50:49 +08:00
3 changed files with 8 additions and 6 deletions
Showing only changes of commit 8957fd3dcb - Show all commits

View File

@ -61,6 +61,12 @@ export default {
filters: {
site: this.name
},
route(row) {
return {
name: 'Site Job',
params: { id: row.name }
};
},
orderBy: 'creation desc',
searchField: 'job_type',
fields: ['end', 'job_id'],

View File

@ -53,12 +53,7 @@ export function getJobsTab(pagetype: JobDocTypes) {
else if (pagetype === 'Release Group') return { group: res.name };
throw unreachable;
},
route(row) {
return {
name: jobRoute,
params: { id: row.name }
};
},
route: undefined,
orderBy: 'creation desc',
searchField: 'job_type',
fields: ['end', 'job_id'],

View File

@ -239,6 +239,7 @@ export const statusMap = {
export const deployTypeMap = {
'Migrate': '迁移',
'Pull': '拉取',
'Update': '更新',
'Install': '安装',
'Uninstall': '卸载',