fix(boards): issues with old-import board name containing spaces (#4052)
This commit is contained in:
@@ -59,7 +59,7 @@ export const ImportBoardModal = createModal(({ actions }) => {
|
||||
}
|
||||
|
||||
setFileValid(true);
|
||||
form.setFieldValue("configuration.name", result.data.configProperties.name);
|
||||
form.setFieldValue("configuration.name", result.data.configProperties.name.replaceAll(" ", "-"));
|
||||
})();
|
||||
},
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user