feat: trim for aplhabet sort
This commit is contained in:
@@ -493,7 +493,7 @@ class CreateSightStore {
|
||||
latitude: this.sight.latitude,
|
||||
longitude: this.sight.longitude,
|
||||
is_default_icon: this.sight.is_default_icon,
|
||||
name: this.sight[primaryLanguage].name,
|
||||
name: (this.sight[primaryLanguage].name || "").trim(),
|
||||
address: this.sight[primaryLanguage].address,
|
||||
thumbnail: this.sight.thumbnail,
|
||||
icon: this.sight.icon,
|
||||
@@ -521,7 +521,7 @@ class CreateSightStore {
|
||||
latitude: this.sight.latitude,
|
||||
longitude: this.sight.longitude,
|
||||
is_default_icon: this.sight.is_default_icon,
|
||||
name: this.sight[lang].name,
|
||||
name: (this.sight[lang].name || "").trim(),
|
||||
address: this.sight[lang].address,
|
||||
thumbnail: this.sight.thumbnail,
|
||||
icon: this.sight.icon,
|
||||
|
||||
Reference in New Issue
Block a user