generated from gitea_admin/default
dev
This commit is contained in:
@@ -658,7 +658,8 @@
|
||||
{
|
||||
locale: "fr-FR",
|
||||
populate: populateInstruments,
|
||||
pageSize: 500,
|
||||
pageSize: 100,
|
||||
fetchAll: true,
|
||||
}
|
||||
)
|
||||
|
||||
@@ -685,7 +686,14 @@
|
||||
groups.get(categoryName).instruments_list.push(instrument)
|
||||
}
|
||||
|
||||
return Array.from(groups.values())
|
||||
return Array.from(groups.values()).map((category) => ({
|
||||
...category,
|
||||
instruments_list: category.instruments_list.sort((a, b) =>
|
||||
String(a.instrument_nom || "").localeCompare(String(b.instrument_nom || ""), "fr", {
|
||||
sensitivity: "base",
|
||||
})
|
||||
),
|
||||
}))
|
||||
})
|
||||
|
||||
const openedInstrumentDescriptions = ref({})
|
||||
|
||||
Reference in New Issue
Block a user