mirror of
https://github.com/owntracks/recorder.git
synced 2026-03-25 23:26:53 +00:00
display (lat,lon) in table if no address available
This commit is contained in:
@@ -62,7 +62,7 @@
|
||||
|
||||
var dt = moment.utc(d.tst * 1000).local();
|
||||
d['fulldate'] = dt.format("DD MMM YYYY HH:mm:ss");
|
||||
d['addr'] = d['addr'] || '(unknown)';
|
||||
d['addr'] = d['addr'] || '(' + d['lat'] + ',' + d['lon'] + ')';
|
||||
d['cc'] = d['cc'] || '__';
|
||||
d['tid'] = d['tid'] || '__';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user