Skip to content

Commit

Permalink
Fixed Typo in UserManagement
Browse files Browse the repository at this point in the history
  • Loading branch information
Megamarf committed Mar 6, 2024
1 parent 5d8c9bf commit c2164e0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ private void initComponentRenderer() {
new Text("Registriert seit: " + DateTimeFormatter.ofPattern(DATE_PATTERN)
.format(user.getCreatedAt()))),
new Div(user.getLastLogin() != null
? new Text("Letzer Login: " + DateTimeFormatter.ofPattern(DATE_PATTERN)
? new Text("Letzter Login: " + DateTimeFormatter.ofPattern(DATE_PATTERN)
.format(user.getLastLogin()))
: new Text("Nie")),
new Div(new Text("Status: " + status)));
Expand Down

0 comments on commit c2164e0

Please sign in to comment.