feat(TheHive Node): Overhaul (#6457)

This commit is contained in:
Michael Kret
2023-09-04 18:15:52 +03:00
committed by GitHub
parent f286bd33c1
commit 73e782e2cf
85 changed files with 8291 additions and 4 deletions

View File

@@ -159,7 +159,14 @@ const resourceMapperMode = computed<string | undefined>(() => {
return resourceMapperTypeOptions.value?.mode;
});
const resourceMapperValuesLabel = computed<string | undefined>(() => {
return resourceMapperTypeOptions.value?.valuesLabel;
});
const valuesLabel = computed<string>(() => {
if (resourceMapperValuesLabel.value) {
return resourceMapperValuesLabel.value;
}
if (resourceMapperMode.value && resourceMapperMode.value === 'update') {
return locale.baseText('resourceMapper.valuesToUpdate.label');
}