Skip to content

Commit 68c2018

Browse files
ivan-risuenoIván Risueño
andauthored
Fix incorrect literals (#23)
Co-authored-by: Iván Risueño <ivan.risueno_martin.ext@boehringer-ingelheim.com>
1 parent 47bac62 commit 68c2018

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/app/components/request-deletion-dialog/request-deletion-dialog.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ <h2 mat-dialog-title>{{ data.componentName }} - Deletion Form</h2>
55
<mat-dialog-content>
66
<div class="help-message-ctn">
77
<appshell-icon class="info-icon" icon="circle_i"></appshell-icon>
8-
<span>Please fill the form, the Support team will receive a Service Now ticket and assist you with the component deletion.</span>
8+
<span>Please fill the form, the Support team will receive a ticket and assist you with the component deletion.</span>
99
</div>
1010

1111
<div class="field-label">

src/app/screens/project-components-screen/project-components-screen.component.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ describe('ProjectComponentsScreenComponent', () => {
308308
id: '',
309309
read: false,
310310
subject: 'only_toast',
311-
title: 'The request has successfully been sent. Support will receive a Service Now ticket and manage the component deletion.'
311+
title: 'The request has successfully been sent. Support will receive a ticket and manage the component deletion.'
312312
} as AppShellNotification, 8000);
313313
});
314314

src/app/screens/project-components-screen/project-components-screen.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ export class ProjectComponentsScreenComponent implements OnInit, OnDestroy {
136136
// Extended message when automatic deletion is incorrect, since no human intervention is expected
137137
const msg = shouldRequestAutomaticDeletion ?
138138
'The request has successfully been sent.' :
139-
'The request has successfully been sent. Support will receive a Service Now ticket and manage the component deletion.';
139+
'The request has successfully been sent. Support will receive a ticket and manage the component deletion.';
140140

141141
dialogRef.afterClosed().subscribe((result: RequestDeletionDialogResult | undefined) => {
142142
if (result) {

0 commit comments

Comments
 (0)