Fix getOperatorType

This commit is contained in:
Pranav Raj S 2022-05-13 16:58:21 +05:30
parent 4c5b6bcbfa
commit a3b72ad997

View file

@ -5,6 +5,7 @@ import {
getActionOptions,
getConditionOptions,
getCustomAttributeInputType,
getOperatorTypes,
isACustomAttribute,
} from '../../helper/automationHelper.js';
import { mapGetters } from 'vuex';
@ -96,7 +97,7 @@ export default {
key
);
if (customAttribute) {
return this.getOperatorTypes(customAttribute.attribute_display_type);
return getOperatorTypes(customAttribute.attribute_display_type);
}
}
const type = this.getAutomationType(key);