Skip to content

Commit 4b0da86

Browse files
authored
Fixes typos in client after bad merge (#160)
1 parent 429c22d commit 4b0da86

File tree

2 files changed

+4
-4
lines changed
  • services/web/client/source/class/qxapp

2 files changed

+4
-4
lines changed

services/web/client/source/class/qxapp/components/login/Form.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
qx.Class.define("qxapp.components.login.Form", {
1010
extend: qx.ui.form.Form,
11+
include: [qx.locale.MTranslation],
1112

1213
construct: function() {
1314
this.base(arguments);
@@ -29,7 +30,6 @@ qx.Class.define("qxapp.components.login.Form", {
2930
placeholder: this.tr("Your password"),
3031
tabIndex: username.getTabIndex()+1
3132
});
32-
password.setPlaceholder();
3333
this.add(password, "", null, "password", null);
3434

3535
// TODO:

services/web/client/source/class/qxapp/dev/fake/Data.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -728,9 +728,9 @@ qx.Class.define("qxapp.dev.fake.Data", {
728728

729729
getServices: function() {
730730
let fakeServices = [];
731-
Array.prototype.push.apply(fakeServices, qxapp.qxapp.dev.fake.Data.getProducers());
732-
Array.prototype.push.apply(fakeServices, qxapp.qxapp.dev.fake.Data.getComputationals());
733-
Array.prototype.push.apply(fakeServices, qxapp.qxapp.dev.fake.Data.getAnalyses());
731+
Array.prototype.push.apply(fakeServices, qxapp.dev.fake.Data.getProducers());
732+
Array.prototype.push.apply(fakeServices, qxapp.dev.fake.Data.getComputationals());
733+
Array.prototype.push.apply(fakeServices, qxapp.dev.fake.Data.getAnalyses());
734734
return fakeServices;
735735
},
736736

0 commit comments

Comments
 (0)