equal
deleted
inserted
replaced
43 screenSummary = () => { |
43 screenSummary = () => { |
44 |
44 |
45 if (this.state.screenSummary === 0) { |
45 if (this.state.screenSummary === 0) { |
46 return ( |
46 return ( |
47 <div> |
47 <div> |
48 <a onClick={this.toggleScreenSummary} className ="text-primary"><Trans i18nKey="session.protocol_display">Afficher le protocole d'annotation</Trans></a> |
48 <span onClick={this.toggleScreenSummary} className ="text-primary btn"><Trans i18nKey="session.protocol_display">Afficher le protocole d'annotation</Trans></span> |
49 <SessionSummary notes={this.props.notes} /> |
49 <SessionSummary notes={this.props.notes} /> |
50 </div> |
50 </div> |
51 ); |
51 ); |
52 } |
52 } |
53 |
53 |
54 if (this.state.screenSummary === 1) { |
54 if (this.state.screenSummary === 1) { |
55 return ( |
55 return ( |
56 <div> |
56 <div> |
57 <a onClick={this.toggleScreenSummary} className ="text-primary"><Trans i18nKey="session.summary_display">Afficher le résumé de la session</Trans></a> |
57 <span onClick={this.toggleScreenSummary} className ="text-primary btn"><Trans i18nKey="session.summary_display">Afficher le résumé de la session</Trans></span> |
58 <ProtocolSummary /> |
58 <ProtocolSummary /> |
59 </div> |
59 </div> |
60 ); |
60 ); |
61 } |
61 } |
62 } |
62 } |
63 |
63 |