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',
'newInstance',
'creationDate',
'description',
'changedModel',
'changedModelId',
'changedModelValue',
'description',
'summaryId',
'reason',
],
include: [
{
@ -333,6 +334,7 @@ function selectFilter(type, dateType) {
{ oldJson: { like: `%${changeInput.value}%` } },
{ newJson: { like: `%${changeInput.value}%` } },
{ description: { like: `%${changeInput.value}%` } },
{ reason: { like: `%${changeInput.value}%` } },
];
else selectedFilters.value.or = undefined;
}