Skip to content
This repository has been archived by the owner on Mar 10, 2022. It is now read-only.

Commit

Permalink
(PC-1693) fix typo in BookingItem Account
Browse files Browse the repository at this point in the history
  • Loading branch information
Ledoux authored and ledoux committed Apr 8, 2019
1 parent b92a571 commit 76b616e
Showing 1 changed file with 12 additions and 13 deletions.
25 changes: 12 additions & 13 deletions src/components/pages/Accounting/BookingItem.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ class BookingItem extends Component {
dispatch(
showModal(
<div>
Êtes-vous surs de vouloir annuler cette réservation ?
Souhaitez-vous réellement annuler cette réservation ?
<div className="level">
<button
className="button is-primary level-item"
Expand Down Expand Up @@ -156,19 +156,18 @@ class BookingItem extends Component {
{token}: {userIdentifier}
</td>
<td rowSpan="2">
{!isCancelled &&
!isUsed && (
<div className="navbar-item has-dropdown is-hoverable AccountingPage-actions">
<div className="actionButton" />
<div className="navbar-dropdown is-right">
<a
className="navbar-item cancel"
onClick={this.onCancelClick}>
<Icon svg="ico-close-r" /> Annuler la réservation
</a>
</div>
{!isCancelled && !isUsed && (
<div className="navbar-item has-dropdown is-hoverable AccountingPage-actions">
<div className="actionButton" />
<div className="navbar-dropdown is-right">
<a
className="navbar-item cancel"
onClick={this.onCancelClick}>
<Icon svg="ico-close-r" /> Annuler la réservation
</a>
</div>
)}
</div>
)}
</td>
</tr>
<tr className="offer-item first-col">
Expand Down

0 comments on commit 76b616e

Please sign in to comment.