mirror of https://github.com/certd/certd
fix: 修复历史记录不能按名称查询的bug
parent
764326ab16
commit
6113c388b7
|
@ -65,6 +65,15 @@ export default function ({ crudExpose, context }: CreateCrudOptionsProps): Creat
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
search: {
|
||||||
|
formItem: {
|
||||||
|
labelCol: {
|
||||||
|
style: {
|
||||||
|
width: "120px"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
rowHandle: {
|
rowHandle: {
|
||||||
minWidth: 200,
|
minWidth: 200,
|
||||||
fixed: "right",
|
fixed: "right",
|
||||||
|
|
|
@ -47,6 +47,7 @@ export class HistoryController extends CrudController<HistoryService> {
|
||||||
|
|
||||||
let pipelineIds: any = null;
|
let pipelineIds: any = null;
|
||||||
const pipelineTitle = body.query?.pipelineTitle;
|
const pipelineTitle = body.query?.pipelineTitle;
|
||||||
|
delete body.query.pipelineTitle;
|
||||||
if (pipelineTitle) {
|
if (pipelineTitle) {
|
||||||
const pipelines = await this.pipelineService.list({
|
const pipelines = await this.pipelineService.list({
|
||||||
query: pipelineQuery,
|
query: pipelineQuery,
|
||||||
|
|
|
@ -6,6 +6,7 @@ import { SshClient } from '../../lib/ssh.js';
|
||||||
title: '执行远程主机脚本命令',
|
title: '执行远程主机脚本命令',
|
||||||
icon: 'tabler:brand-powershell',
|
icon: 'tabler:brand-powershell',
|
||||||
group: pluginGroups.host.key,
|
group: pluginGroups.host.key,
|
||||||
|
desc: '可以执行重启nginx等操作让证书生效',
|
||||||
input: {},
|
input: {},
|
||||||
default: {
|
default: {
|
||||||
strategy: {
|
strategy: {
|
||||||
|
|
Loading…
Reference in New Issue