Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ <h2 mat-dialog-title>{{ data.componentName }} - Deletion Form</h2>
<mat-dialog-content>
<div class="help-message-ctn">
<appshell-icon class="info-icon" icon="circle_i"></appshell-icon>
<span>Please fill the form, the Support team will receive a Service Now ticket and assist you with the component deletion.</span>
<span>Please fill the form, the Support team will receive a ticket and assist you with the component deletion.</span>
</div>

<div class="field-label">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ describe('ProjectComponentsScreenComponent', () => {
id: '',
read: false,
subject: 'only_toast',
title: 'The request has successfully been sent. Support will receive a Service Now ticket and manage the component deletion.'
title: 'The request has successfully been sent. Support will receive a ticket and manage the component deletion.'
} as AppShellNotification, 8000);
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ export class ProjectComponentsScreenComponent implements OnInit, OnDestroy {
// Extended message when automatic deletion is incorrect, since no human intervention is expected
const msg = shouldRequestAutomaticDeletion ?
'The request has successfully been sent.' :
'The request has successfully been sent. Support will receive a Service Now ticket and manage the component deletion.';
'The request has successfully been sent. Support will receive a ticket and manage the component deletion.';

dialogRef.afterClosed().subscribe((result: RequestDeletionDialogResult | undefined) => {
if (result) {
Expand Down
Loading