mirror of
https://github.com/tomru/pfadi-bussle.git
synced 2026-03-03 06:27:11 +01:00
fix linting?
This commit is contained in:
committed by
Thomas Ruoff
parent
00002a62d2
commit
b9f116e83e
@@ -198,8 +198,9 @@ function BookingBillPage({
|
|||||||
>
|
>
|
||||||
-
|
-
|
||||||
</button>
|
</button>
|
||||||
<label className="flabel inline">{`Kostenpunkt ${index + 1
|
<label className="flabel inline">{`Kostenpunkt ${
|
||||||
}`}</label>
|
index + 1
|
||||||
|
}`}</label>
|
||||||
</div>
|
</div>
|
||||||
<div className="ml-10 mb-3" key={`input{index}`}>
|
<div className="ml-10 mb-3" key={`input{index}`}>
|
||||||
<Input
|
<Input
|
||||||
|
|||||||
@@ -54,16 +54,16 @@ export default function ShowBooking({
|
|||||||
{[BOOKING_STATUS.CONFIRMED, BOOKING_STATUS.REQUESTED].includes(
|
{[BOOKING_STATUS.CONFIRMED, BOOKING_STATUS.REQUESTED].includes(
|
||||||
booking.status
|
booking.status
|
||||||
) && (
|
) && (
|
||||||
<div className="my-6">
|
<div className="my-6">
|
||||||
<button
|
<button
|
||||||
onClick={onCancelBooking}
|
onClick={onCancelBooking}
|
||||||
className="btn btn-red"
|
className="btn btn-red"
|
||||||
disabled={storingBooking}
|
disabled={storingBooking}
|
||||||
>
|
>
|
||||||
Buchung Stornieren
|
Buchung Stornieren
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
</Layout>
|
</Layout>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user