[MM-47776] Reverse order of input fields in server welcome screen (#2309)
* Reverse order of inputs in Server modals (add/edit) * Revert "Reverse order of inputs in Server modals (add/edit)" This reverts commit f3d577dcd5c0e13d6d0e3c2cc4de588008f53e68. * Update order of server fields in welcome screens * Update server modal focus test * Add margin between inputs
This commit is contained in:
@@ -41,7 +41,7 @@ describe('Add Server Modal', function desc() {
|
||||
let newServerView;
|
||||
|
||||
it('MM-T1312 should focus the first text input', async () => {
|
||||
const isFocused = await newServerView.$eval('#teamNameInput', (el) => el === document.activeElement);
|
||||
const isFocused = await newServerView.$eval('#teamNameInput', (el) => el.isSameNode(document.activeElement));
|
||||
isFocused.should.be.true;
|
||||
});
|
||||
|
||||
|
Reference in New Issue
Block a user