PolyGerrit: Fix undefined url in gr-dropdown

If link.url is undefined lets return it as '' so no url is applied.

Bug: Issue 6352
Change-Id: I9492e48b14e4387cbdbe87c562ffa4966323948c
This commit is contained in:
Paladox none 2017-05-31 16:09:13 +00:00 committed by Paladox
parent f2f4ee165c
commit 2c60b89e2b

View File

@ -88,6 +88,9 @@
},
_computeLinkURL: function(link) {
if (typeof link.url === 'undefined') {
return '';
}
if (link.target) {
return link.url;
}