Skip to content

Commit

Permalink
Merge branch 'feature/FOUR-13174' of https://github.com/ProcessMaker/…
Browse files Browse the repository at this point in the history
…screen-builder into feature/FOUR-13174
  • Loading branch information
pmoskrojas committed Jan 18, 2024
2 parents d02246f + b5b0b51 commit 2e56109
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/vue-form-builder.vue
Original file line number Diff line number Diff line change
Expand Up @@ -884,7 +884,7 @@ export default {
return order;
},
setGroupOrder(orderConfig) {
this.groupOrder = { ...orderConfig };
this.groupOrder = { ...this.groupOrder, ...orderConfig };
},
toggleCollapse(index) {
if (this.collapse[index] && this.collapse[index] === true) {
Expand Down
4 changes: 2 additions & 2 deletions tests/e2e/specs/DeviceVisivilityInspector.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ describe('Device Visiblility Inspector', () => {
});
it('Verify if a FileDownload has device visiblility settings', () => {
cy.visit('/');
cy.openAcordeon("collapse-4");
cy.openAcordeon("collapse-5");
cy.get('[data-cy=controls-FileDownload]').drag('[data-cy=screen-drop-zone]', 'bottom');
cy.get('[data-cy=screen-element-container]').click();
cy.get('[data-cy=accordion-Advanced]').click();
Expand All @@ -67,7 +67,7 @@ describe('Device Visiblility Inspector', () => {
});
it('Verify if a FileUpload has device visiblility settings', () => {
cy.visit('/');
cy.openAcordeon("collapse-4");
cy.openAcordeon("collapse-5");
cy.get('[data-cy=controls-FileUpload]').drag('[data-cy=screen-drop-zone]', 'bottom');
cy.get('[data-cy=screen-element-container]').click();
cy.get('[data-cy=accordion-Advanced]').click();
Expand Down

0 comments on commit 2e56109

Please sign in to comment.