Skip to content

Commit 93da2b6

Browse files
authored
Merge pull request #1149
* fix(36144): fix the order of the username and password properties * test(36144): fix tests
1 parent 04ea5f0 commit 93da2b6

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

hivemq-edge-frontend/src/api/schemas/bridge.ui-schema.ts

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,17 @@ export const bridgeUISchema: UiSchema = {
1111
'ui:submitButtonOptions': {
1212
norender: true,
1313
},
14-
'ui:order': ['id', 'host', 'port', '*', 'loopPreventionEnabled', 'loopPreventionHopCount'],
14+
'ui:order': [
15+
'id',
16+
'host',
17+
'port',
18+
'clientId',
19+
'username',
20+
'password',
21+
'*',
22+
'loopPreventionEnabled',
23+
'loopPreventionHopCount',
24+
],
1525
'ui:tabs': [
1626
{
1727
id: 'bridgeConnection',

hivemq-edge-frontend/src/modules/Bridges/components/BridgeEditorDrawer.spec.cy.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ const cy_bridgeShouldBeDefinedProperly = () => {
2727
{ id: 'host' },
2828
{ id: 'port' },
2929
{ id: 'clientId' },
30-
{ id: 'password' },
3130
{ id: 'username' },
31+
{ id: 'password' },
3232
],
3333
},
3434
{

0 commit comments

Comments
 (0)