We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a4b41d commit 851c404Copy full SHA for 851c404
src/fragments/forms/map-form/components/optimization/components/edit-dialog/edit-dialog.js
@@ -208,8 +208,8 @@ export default {
208
for (const s of this.editSkills) {
209
editSkillIds.push(s.id)
210
}
211
- let newSkillIdsSorted = newSkillIds.sort((a,b) => a-b)
212
- for (const id of newSkillIdsSorted) {
+ newSkillIds.sort((a,b) => a-b)
+ for (const id of newSkillIds) {
213
if (!editSkillIds.includes(id)) {
214
this.editSkills.push(new Skill(' Skill from imported ' + this.content.item + ' ' + id, id))
215
0 commit comments