From: Richard Fairhurst Date: Sun, 4 Dec 2011 00:48:34 +0000 (+0000) Subject: Show status in advanced view X-Git-Url: https://git.openstreetmap.org/potlatch2.git/commitdiff_plain/4beed8c877485d77bdb6b01a11c047d7717cfd40?hp=a132b0ca9cb97fba871c908470168a15d14ea189 Show status in advanced view --- diff --git a/net/systemeD/potlatch2/TagViewer.mxml b/net/systemeD/potlatch2/TagViewer.mxml index 3dd633e7..9c8ae323 100644 --- a/net/systemeD/potlatch2/TagViewer.mxml +++ b/net/systemeD/potlatch2/TagViewer.mxml @@ -605,7 +605,7 @@ if ( entity is Node ) entityText = "Node"; else if ( entity is Way ) entityText = "Way"; else if ( entity is Relation ) entityText = "Relation"; - advancedID.htmlText = entityText+": "+entity.id+""; + advancedID.htmlText = entityText+": "+entity.id+" "+(entity.status ? entity.status : ''); } removeRelationListeners();