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 9b916c8 commit a71ba5fCopy full SHA for a71ba5f
services/static-webserver/client/source/class/osparc/po/UsersPending.js
@@ -147,9 +147,12 @@ qx.Class.define("osparc.po.UsersPending", {
147
148
__addRows: function(pendingUsers) {
149
const pendingUsersLayout = this.getChildControl("pending-users-layout");
150
+ const grid = pendingUsersLayout.getLayout();
151
152
let row = 1;
153
pendingUsers.forEach(pendingUser => {
154
+ grid.setRowAlign(row, "left", "middle");
155
+
156
pendingUsersLayout.add(new qx.ui.basic.Label(pendingUser.firstName + " " + pendingUser.lastName), {
157
row,
158
column: 0,
0 commit comments