Skip to content
Snippets Groups Projects
Commit 3977fb75 authored by Lars Maronde's avatar Lars Maronde
Browse files

pruefdatum formatierung mit momentjs

parent 64f92bcd
No related branches found
No related tags found
No related merge requests found
Source diff could not be displayed: it is too large. Options to address this: view the blob.
......@@ -279,7 +279,7 @@ function BuchungTabelle(props) {
<td>{buchung.typ === "ZUGANG" ? buchung.menge : ""}</td>
<td>{buchung.typ === "ZUGANG" ? "" : buchung.menge}</td>
<td>{buchung.typ === "ZUGANG" ? buchung.anforderungsschein : buchung.rezept}</td>
<td>{buchung.pruefdatum}</td>
<td>{buchung.pruefdatum ? <Moment format="DD.MM.YYYY">{buchung.pruefdatum}</Moment> : ""}</td>
<td>{buchung.pruefer ? buchung.pruefer.vorname+" "+buchung.pruefer.name : ""}</td>
{props.aktiveRolle.toLowerCase() === "admin" || props.aktiveRolle.toLowerCase() === "pruefer" ?
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment