display timeAgo properly and show coords in users screen

This commit is contained in:
goga
2021-03-16 00:05:28 +05:00
parent c8107441de
commit 53745ca9f5
4 changed files with 5 additions and 4 deletions

View File

@@ -13,6 +13,7 @@ import com.geeksville.android.Logging
import com.geeksville.mesh.NodeInfo
import com.geeksville.mesh.R
import com.geeksville.mesh.model.UIViewModel
import com.geeksville.util.formatAgo
import com.mapbox.geojson.Feature
import com.mapbox.geojson.FeatureCollection
import com.mapbox.geojson.Point
@@ -79,7 +80,7 @@ class MapFragment : ScreenFragment("Map"), Logging {
)
)
node.user?.let {
f.addStringProperty("name", it.longName)
f.addStringProperty("name", it.longName + " " + formatAgo(node.lastSeen))
}
f
}

2
design

Submodule design updated: a810741521...d0339f0297