Flow designer missing the conditions DescriptionThe flow contains some if statements, but all of them lost their conditions. CauseThe underlying root cause is a missing attribute on the Logic Inputs.ResolutionNavigate to the Logic Input table with a filter on Attributes - does not contain - element_mapping.https://<your-instance>.service-now.com/sys_hub_flow_logic_input_list.do?sysparm_query=attributesNOT%20LIKEelement_mapping&sysparm_first_row=1&sysparm_view=For each Logic Input found, open the recordClick 'Advanced View' at the bottomAdd the attribute 'element_mapping_provider=com.glide.flow_design.action.data.FlowDesignVariableMapper' (without quotes and don't forget to add a comma separator if there are existing attributes)Save the Logic InputPost adding the attribute to all Logic Inputs. Open Scripts - Background and run the command: GlideCacheManager.flush("syscache_tabledescriptor"); Now all imported flows that used to have missing conditions should have them restored.