Skip to content

Commit 3fb60b6

Browse files
feat: TTL-925 update overlap message (#1002)
1 parent a71577b commit 3fb60b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/modules/time-entries/pages/time-entries.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ export class TimeEntriesComponent implements OnInit, OnDestroy, AfterViewInit {
146146
this.checkIfActiveEntryOverlapping(isEditingEntryEqualToActiveEntry, startDateAsLocalDate);
147147
if (!isEditingEntryEqualToActiveEntry && isTimeEntryOverlapping || this.isActiveEntryOverlapping ) {
148148
const message = this.isActiveEntryOverlapping ? 'try another "Time in"' : 'try with earlier times';
149-
this.toastrService.error(`You are on the clock and this entry overlaps it, ${message}.`);
149+
this.toastrService.error(`There is an overlap with another time entry, please modify the time.`);
150150
this.isActiveEntryOverlapping = false;
151151
} else {
152152
this.doSave(event);

0 commit comments

Comments
 (0)