From 7c16dfa6e93ea5190b535c31d0858ad4facc7e28 Mon Sep 17 00:00:00 2001 From: Tom MacWright Date: Mon, 26 Nov 2012 10:28:34 -0500 Subject: [PATCH] Fix modifications regression --- js/iD/graph/Graph.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/iD/graph/Graph.js b/js/iD/graph/Graph.js index c2e44f259..019128b57 100644 --- a/js/iD/graph/Graph.js +++ b/js/iD/graph/Graph.js @@ -87,7 +87,7 @@ iD.Graph.prototype = { }, modifications: function() { - _.filter(this.entities, function(entity) { + return _.filter(this.entities, function(entity) { return entity.modified; }); }