Run prettier on backlog folder

This commit is contained in:
Claudio Ortolina
2026-05-04 21:22:27 +01:00
parent 7bf89d9a1d
commit dc3b31378d
177 changed files with 2594 additions and 936 deletions
@@ -3,17 +3,18 @@ id: ML-141
title: Support records with accents
status: Done
assignee: []
created_date: '2026-04-20 09:00'
created_date: "2026-04-20 09:00"
labels: []
dependencies: []
references:
- 'https://github.com/cloud8421/music_library/issues/7'
- "https://github.com/cloud8421/music_library/issues/7"
priority: medium
---
## Description
<!-- SECTION:DESCRIPTION:BEGIN -->
_GitHub: created 2024-12-07 · updated 2024-12-07 · closed 2024-12-07_
SQLite's collation functions don't by default collapse accented characters into their non-accented variants. For example, an artist with sort name `Åkerfeldt, Mikael` is appended at the bottom instead of being grouped with `A`.
@@ -21,4 +22,5 @@ SQLite's collation functions don't by default collapse accented characters into
The `records_search_index` table behaves correctly (searching `Aker` matches the artist), but alphabetical sorting/grouping is broken for non-ASCII sort names.
Fix: ensure non-ASCII artist records are slotted at the correct alphabetical position.
<!-- SECTION:DESCRIPTION:END -->