diff --git a/client/mixins/forms/fieldsLogic.js b/client/mixins/forms/fieldsLogic.js deleted file mode 100644 index 014ee65..0000000 --- a/client/mixins/forms/fieldsLogic.js +++ /dev/null @@ -1,17 +0,0 @@ -import FormPropertyLogicRule from '../../forms/FormPropertyLogicRule.js' -export default { - methods: { - validateFieldsLogic (properties) { - properties.forEach((field) => { - const isValid = (new FormPropertyLogicRule(field)).isValid() - if(!isValid){ - field.logic = { - conditions: null, - actions: [] - } - } - }) - return properties - } - } -}