Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Commit

Permalink
Merged hotfix/edit-gage-popup-title into master
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonKleinert committed Jan 11, 2017
2 parents ac47356 + 55d7de3 commit 8789ff3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion npm-shrinkwrap.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "flood-web-viewer",
"version": "1.1.4",
"version": "1.1.5",
"description": "Texas flood information web viewer",
"private": true,
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions src/components/PopupTitle.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const PopupTitle = class PopupTitle extends Component {
<span className="popup__title-text">
{ this.props.title }
</span>
{this.props.title == "Flood Gage Information" &&
{this.props.title == "Flood Gage" &&
<Button className="subscribe-button mdl-color-text--white" onClick={this.props.showSubscribe}>Subscribe</Button>
}
</div>
Expand All @@ -29,7 +29,7 @@ const PopupTitle = class PopupTitle extends Component {

PopupTitle.defaultProps = {
icon: floodGaugeIcon,
title: "Flood Gage Information"
title: "Flood Gage"
}

export default PopupTitle

0 comments on commit 8789ff3

Please sign in to comment.