aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/network.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components/network.js')
-rw-r--r--ui/app/components/network.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/ui/app/components/network.js b/ui/app/components/network.js
index d9045167f..f0fc14454 100644
--- a/ui/app/components/network.js
+++ b/ui/app/components/network.js
@@ -43,7 +43,10 @@ Network.prototype.render = function () {
} else if (providerName === 'kovan') {
hoverText = 'Kovan Test Network'
iconName = 'kovan-test-network'
- } else {
+ } else if (providerName === 'rinkeby') {
+ hoverText = 'Rinkeby Test Network'
+ iconName = 'unknown-private-network'
+ }else {
hoverText = 'Unknown Private Network'
iconName = 'unknown-private-network'
}