## Recording https://github.com/cldcvr/flow-form-builder/assets/39631861/20250a55-5ffe-4681-b8db-18f8321e6510 ## To Replicate > Flow version : "@cldcvr/flow-form-builder": "^1.7.0" In any use case of `f-form-builder`, have a dropdown field which has loading value set to true. ``` { label: { title: "Dataset" }, type: "select", searchable: true, loading: true, createOption: isCreateNewDatasetAllowed.value, placeholder: "Enter your dataset name", options: datasets.value, validationRules: [ { name: "required" }, { name: "custom", validate: dataset => typeof dataset === "string" && datasetValidity.isValid, message: datasetValidity.msg } ], clear: true } ``` ## Expected behaviour There must be a loader on the field, and it is debatable whether or not edits during this loading phase should be allowed or not.
Recording
Screen.Recording.2023-08-08.at.6.30.30.PM.mov
To Replicate
In any use case of
f-form-builder, have a dropdown field which has loading value set to true.Expected behaviour
There must be a loader on the field, and it is debatable whether or not edits during this loading phase should be allowed or not.