From 1b8e25501cb6f5a46f2d1c8b55b32f55fe08eeec Mon Sep 17 00:00:00 2001 From: Allen Servedio Date: Sat, 28 Mar 2015 21:34:22 -0400 Subject: [PATCH] Changes made in response to code review. --- src/ImageCard.react.js | 8 ++++---- styles/new-container.less | 5 ----- 2 files changed, 4 insertions(+), 9 deletions(-) diff --git a/src/ImageCard.react.js b/src/ImageCard.react.js index 7739d119..29a09efe 100644 --- a/src/ImageCard.react.js +++ b/src/ImageCard.react.js @@ -42,11 +42,11 @@ var ImageCard = React.createClass({ $tagOverlay.fadeOut(300); }, handleRepoClick: function () { - var $repoUri = 'https://registry.hub.docker.com/' + var $repoUri = 'https://registry.hub.docker.com/'; if (this.props.image.is_official) { - $repoUri = $repoUri + "_/" + $repoUri = $repoUri + "_/"; } else { - $repoUri = $repoUri + "u/" + $repoUri = $repoUri + "u/"; } util.exec(['open', $repoUri + this.props.image.name]); }, @@ -67,7 +67,7 @@ var ImageCard = React.createClass({ name = (
{namespace}
- {this.props.image.name}}> + View on DockerHub}> {repo}
diff --git a/styles/new-container.less b/styles/new-container.less index 1956f382..a00f9c3e 100644 --- a/styles/new-container.less +++ b/styles/new-container.less @@ -187,11 +187,6 @@ text-overflow: ellipsis; white-space: nowrap; text-decoration: underline; - &:hover { - background-color: @brand-action; - color: white; - border-radius: 20px; - } } } .description {