Skip to content

Commit

Permalink
return blank stirng if no loc description is availble
Browse files Browse the repository at this point in the history
  • Loading branch information
zuk committed May 10, 2012
1 parent cab7fe6 commit 0015b46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/veos.model.js
Expand Up @@ -102,7 +102,7 @@
},

getLocDescription: function() {
return this.get('loc_description_from_user') || this.get('loc_description_from_google');
return this.get('loc_description_from_user') || this.get('loc_description_from_google') || "";
}
});

Expand Down

0 comments on commit 0015b46

Please sign in to comment.