From a4c33d9a32cacc561972dc5a8ced24a3717554ed Mon Sep 17 00:00:00 2001 From: Ryan Kraus Date: Tue, 14 Jul 2015 21:03:19 -0400 Subject: [PATCH] Fixed domain icons for updater --- src/util/domain-icon.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/domain-icon.js b/src/util/domain-icon.js index 71d05adf26..411df2574f 100644 --- a/src/util/domain-icon.js +++ b/src/util/domain-icon.js @@ -52,7 +52,7 @@ export default function domainIcon(domain, state) { return 'social:pages'; case 'updater': - if(state == "True") { + if(state == "update_available") { return 'icons:cloud-download'; } else { return 'icons:cloud-done';