Skip to content

Commit

Permalink
Prefer item title over item name
Browse files Browse the repository at this point in the history
  • Loading branch information
dotMorten committed Aug 30, 2024
1 parent d7eb824 commit cf26290
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ public string Name
{
get
{
return _nameOverride ?? (string.IsNullOrEmpty(Basemap.Name) ? Basemap.Item?.Name ?? string.Empty : Basemap.Name);
return _nameOverride ?? (string.IsNullOrEmpty(Basemap.Name) ? (Basemap.Item?.Title ?? Basemap.Item?.Name ?? string.Empty) : Basemap.Name);
}

set
Expand Down

0 comments on commit cf26290

Please sign in to comment.