feat(TheHive Node): Overhaul (#6457)
This commit is contained in:
@@ -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');
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user