diff --git a/web/cypress/integration/workbaskets/workbaskets.spec.js b/web/cypress/integration/workbaskets/workbaskets.spec.js index 660f3fc06..1fdc683b7 100644 --- a/web/cypress/integration/workbaskets/workbaskets.spec.js +++ b/web/cypress/integration/workbaskets/workbaskets.spec.js @@ -75,7 +75,10 @@ context('TASKANA Workbaskets', () => { cy.get('button[mattooltip="Add new access"') .click() .then(() => { - cy.get('mat-form-field').contains('mat-form-field', 'Access id').find('input').type('teamlead-2'); + cy.get('mat-form-field') + .contains('mat-form-field', 'Access id') + .find('input') + .type('teamlead-2', { force: true }); cy.get('input[aria-label="checkAll"]:first').click(); cy.saveWorkbaskets(); }); diff --git a/web/src/app/app.component.scss b/web/src/app/app.component.scss index c3ee9061d..541c15c2b 100644 --- a/web/src/app/app.component.scss +++ b/web/src/app/app.component.scss @@ -71,3 +71,7 @@ ::ng-deep .mat-drawer { overflow-y: visible !important; } + +::ng-deep mat-tooltip-component { + word-break: break-word; +} diff --git a/web/src/app/shared/components/type-ahead/type-ahead.component.html b/web/src/app/shared/components/type-ahead/type-ahead.component.html index 69fc5aa51..7200a06cb 100644 --- a/web/src/app/shared/components/type-ahead/type-ahead.component.html +++ b/web/src/app/shared/components/type-ahead/type-ahead.component.html @@ -1,7 +1,9 @@
- {{name || placeHolderMessage}} + + {{name || placeHolderMessage}} +