Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Mar 22, 2018
1 parent 7a3731c commit d7a6cd6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ type Props = {|
|};

const style = {
textDecoration: none
textDecoration: 'none'
}

class MyProjectCard extends React.PureComponent<Props> {
Expand Down Expand Up @@ -47,7 +47,7 @@ class MyProjectCard extends React.PureComponent<Props> {
</td>
<td className="MyProjectCard-column">
<tr className="MyProjectCard-header">
<a href={url.section(Section.EditProject, id)}>Edit</a>
<a style={style} href={url.section(Section.EditProject, id)}>Edit</a>
</tr>
</td>
</tr>
Expand Down
4 changes: 2 additions & 2 deletions common/static/js/bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -74195,7 +74195,7 @@ function _inherits(subClass, superClass) { if (typeof superClass !== "function"


var style = {
textDecoration: none
textDecoration: 'none'
};

var MyProjectCard = function (_React$PureComponent) {
Expand Down Expand Up @@ -74275,7 +74275,7 @@ var MyProjectCard = function (_React$PureComponent) {
{ className: 'MyProjectCard-header' },
__WEBPACK_IMPORTED_MODULE_1_react___default.a.createElement(
'a',
{ href: __WEBPACK_IMPORTED_MODULE_3__utils_url_js__["a" /* default */].section(__WEBPACK_IMPORTED_MODULE_2__enums_Section_js__["a" /* default */].EditProject, id) },
{ style: style, href: __WEBPACK_IMPORTED_MODULE_3__utils_url_js__["a" /* default */].section(__WEBPACK_IMPORTED_MODULE_2__enums_Section_js__["a" /* default */].EditProject, id) },
'Edit'
)
)
Expand Down

0 comments on commit d7a6cd6

Please sign in to comment.