feat: trim for aplhabet sort

This commit is contained in:
2026-04-06 13:23:25 +03:00
parent a58f438dce
commit 4b02c6e9d3
25 changed files with 73 additions and 59 deletions

View File

@@ -299,9 +299,9 @@ class EditSightStore {
...this.sight.common,
translations: {
name: {
ru: this.sight.ru.name,
en: this.sight.en.name,
zh: this.sight.zh.name,
ru: (this.sight.ru.name || "").trim(),
en: (this.sight.en.name || "").trim(),
zh: (this.sight.zh.name || "").trim(),
},
address: {
ru: this.sight.ru.address,