diff --git a/views/lot-view.ejs b/views/lot-view.ejs index e0a4ae37..c1eaa110 100644 --- a/views/lot-view.ejs +++ b/views/lot-view.ejs @@ -37,7 +37,7 @@
<%= configFunctions.getProperty("aliases.map") %>
- <%= lot.mapName %> + <%= lot.mapName || "(No Name)" %>
diff --git a/views/map-edit.ejs b/views/map-edit.ejs index 50a3fe3d..b6b8cba5 100644 --- a/views/map-edit.ejs +++ b/views/map-edit.ejs @@ -13,7 +13,7 @@ <% if (!isCreate) { %> -
  • <%= map.mapName %>
  • +
  • <%= map.mapName || "(No Name)" %>
  • <% } %>
  • diff --git a/views/map-view.ejs b/views/map-view.ejs index 877a4bb1..726eaa6d 100644 --- a/views/map-view.ejs +++ b/views/map-view.ejs @@ -14,14 +14,14 @@
  • - <%= map.mapName %> + <%= map.mapName || "(No Name)" %>
  • - <%= map.mapName %> + <%= map.mapName || "(No Name)" %>

    <% if (user.userProperties.canUpdate) { %>