Skip to content
This repository has been archived by the owner on Aug 11, 2020. It is now read-only.

Commit

Permalink
Fix 'number conversion' warn log when suppressStatus is unset
Browse files Browse the repository at this point in the history
  • Loading branch information
nabcos committed Oct 2, 2012
1 parent 69e4452 commit f33e7ca
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion nexus/nexus-webapp/src/main/webapp/js/Sonatype.view.js
Expand Up @@ -77,7 +77,9 @@ Sonatype.view = {
return;
}

if (!Ext.isArray(suppressed)) {
if (suppressed === undefined) {
suppressed = [];
} else if (!Ext.isArray(suppressed)) {
suppressed = [suppressed];
}

Expand Down

0 comments on commit f33e7ca

Please sign in to comment.