--- a/client/src/components/Session.js Thu Nov 08 16:03:28 2018 +0100
+++ b/client/src/components/Session.js Tue Nov 13 16:46:15 2018 +0100
@@ -45,8 +45,8 @@
if (this.state.screenSummary === 0) {
return (
<div>
- <a onClick={this.toggleScreenSummary} className ="text-primary"><Trans i18nKey="session.protocol_display">Afficher le protocole d'annotation</Trans></a>
- <SessionSummary notes={this.props.notes} />
+ <span onClick={this.toggleScreenSummary} className ="text-primary btn"><Trans i18nKey="session.protocol_display">Afficher le protocole d'annotation</Trans></span>
+ <SessionSummary notes={this.props.notes} />
</div>
);
}
@@ -54,8 +54,8 @@
if (this.state.screenSummary === 1) {
return (
<div>
- <a onClick={this.toggleScreenSummary} className ="text-primary"><Trans i18nKey="session.summary_display">Afficher le résumé de la session</Trans></a>
- <ProtocolSummary />
+ <span onClick={this.toggleScreenSummary} className ="text-primary btn"><Trans i18nKey="session.summary_display">Afficher le résumé de la session</Trans></span>
+ <ProtocolSummary />
</div>
);
}