Skip to content

Commit

Permalink
fix: Make correct use of className and function fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
fredserva committed Dec 8, 2020
1 parent 52deb28 commit 471b9eb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/components/topmenu/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -153,20 +153,20 @@ class TopMenuNotExtended extends Component {

return (
<div className="comp_topmenu">
<div id="notification" class="hidden">
<div id="notification" className="hidden">
<p id="message"></p>
<div className="buttons">
<button
class="btn"
className="btn"
id="close-button"
onClick="closeNotification()"
onClick={this.closeNotification}
>
{t('close')}
</button>
<button
class="btn hidden"
className="btn hidden"
id="restart-button"
onClick="restartApp()"
onClick={this.restartApp}
>
{t('restart')}
</button>
Expand Down

0 comments on commit 471b9eb

Please sign in to comment.