chore: add missing semicolon

This commit is contained in:
Saqib Ansari 2022-02-18 13:03:31 +05:30
parent 74748c60b2
commit b853902890
2 changed files with 2 additions and 2 deletions

View file

@ -79,7 +79,7 @@ context('Depends On', () => {
cy.fill_field('test_field', 'Show Tab');
cy.get('body').click();
cy.findByRole("tab", {name: "Dependent Tab"}).should('be.visible');
})
});
it('should set the field as mandatory depending on other fields value', () => {
cy.new_form('Test Depends On');
cy.fill_field('test_field', 'Some Value');

View file

@ -40,7 +40,7 @@ export default class Tab {
hide = true;
}
this.toggle(!hide)
this.toggle(!hide);
}
toggle(show) {