We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 572751c commit e1bf598Copy full SHA for e1bf598
services/static-webserver/client/source/class/osparc/po/UsersPending.js
@@ -173,7 +173,7 @@ qx.Class.define("osparc.po.UsersPending", {
173
let date = null;
174
switch (pendingUser.accountRequestStatus) {
175
case "PENDING":
176
- date = pendingUser.preRegistrationRequestedAt ? osparc.utils.Utils.formatDateAndTime(new Date(pendingUser.preRegistrationRequestedAt)) : "-";
+ date = pendingUser.preRegistrationCreated ? osparc.utils.Utils.formatDateAndTime(new Date(pendingUser.preRegistrationCreated)) : "-";
177
break;
178
default:
179
date = pendingUser.accountRequestReviewedAt ? osparc.utils.Utils.formatDateAndTime(new Date(pendingUser.accountRequestReviewedAt)) : "-";
0 commit comments