Skip to content

Commit 4294b91

Browse files
committed
minor
1 parent 3030929 commit 4294b91

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

services/static-webserver/client/source/class/osparc/support/SupportCenter.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -114,17 +114,16 @@ qx.Class.define("osparc.support.SupportCenter", {
114114
break;
115115
}
116116
case "buttons-layout":
117-
control = new qx.ui.container.Composite(new qx.ui.layout.HBox(10)).set({
117+
control = new qx.ui.container.Composite(new qx.ui.layout.HBox(10).set({
118118
alignX: "center",
119-
});
119+
}));
120120
this.getChildControl("conversations-layout").add(control);
121121
break;
122122
case "ask-a-question-button":
123123
control = new osparc.ui.form.FetchButton(this.tr("Ask a Question")).set({
124124
appearance: "strong-button",
125125
allowGrowX: false,
126126
center: true,
127-
alignX: "center",
128127
});
129128
control.addListener("execute", () => this.openConversation(null), this);
130129
this.getChildControl("buttons-layout").add(control);
@@ -134,7 +133,6 @@ qx.Class.define("osparc.support.SupportCenter", {
134133
appearance: "strong-button",
135134
allowGrowX: false,
136135
center: true,
137-
alignX: "center",
138136
});
139137
control.addListener("execute", () => this.createConversationBookCall(null), this);
140138
this.getChildControl("buttons-layout").add(control);

0 commit comments

Comments
 (0)