0
0
Fork 0

feat: refs #7287 Added changes to use reason in log

This commit is contained in:
Guillermo Bonet 2024-08-27 08:01:51 +02:00
parent b4d1a4dab4
commit a980bf5563
1 changed files with 3 additions and 1 deletions

View File

@ -46,11 +46,12 @@ const filter = {
'oldInstance', 'oldInstance',
'newInstance', 'newInstance',
'creationDate', 'creationDate',
'description',
'changedModel', 'changedModel',
'changedModelId', 'changedModelId',
'changedModelValue', 'changedModelValue',
'description',
'summaryId', 'summaryId',
'reason',
], ],
include: [ include: [
{ {
@ -333,6 +334,7 @@ function selectFilter(type, dateType) {
{ oldJson: { like: `%${changeInput.value}%` } }, { oldJson: { like: `%${changeInput.value}%` } },
{ newJson: { like: `%${changeInput.value}%` } }, { newJson: { like: `%${changeInput.value}%` } },
{ description: { like: `%${changeInput.value}%` } }, { description: { like: `%${changeInput.value}%` } },
{ reason: { like: `%${changeInput.value}%` } },
]; ];
else selectedFilters.value.or = undefined; else selectedFilters.value.or = undefined;
} }