Skip to content

Commit 0e04e06

Browse files
TTL-943 change title and place holder text (#1003)
* feat: TTL-943 update tags and place holders * test: TTL-943 update test
1 parent 79d0397 commit 0e04e06

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

src/app/modules/reports/components/time-entries-table/time-entries-table.component.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
</table>
7474
</div>
7575
<div class="alert alert-dark mt-3">
76-
Total: {{ this.resultSum.hours }} hours, {{ this.resultSum.minutes }} minutes, <br />
77-
Total hours entries selected: {{ resultSumEntriesSelected.hours }} hours,
78-
{{ resultSumEntriesSelected.minutes }} minutes
76+
Total: {{ this.resultSum.hours }} hours, {{ this.resultSum.minutes }} minutes.<br />
77+
Total time of entries selected: {{ resultSumEntriesSelected.hours }} hours,
78+
{{ resultSumEntriesSelected.minutes }} minutes.
7979
</div>

src/app/modules/shared/components/technologies/technologies.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<div class="form-group">
2-
<label>Technology:</label>
2+
<label>Technologies:</label>
33

44
<ng-select
55
bindLabel="name"

src/app/modules/shared/components/technologies/technologies.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import { debounceTime, distinctUntilChanged, filter } from 'rxjs/operators';
1313
export class TechnologiesComponent implements OnInit, OnDestroy {
1414
readonly MAX_NUM_TECHNOLOGIES = 10;
1515
readonly NO_RESULTS_MESSAGE = 'No technologies found';
16-
readonly TECHNOLOGIES_PLACEHOLDER = 'Time Entry Technologies';
16+
readonly TECHNOLOGIES_PLACEHOLDER = 'Select Technologies';
1717
readonly ALLOW_SELECT_MULTIPLE = true;
1818
readonly ALLOW_SEARCH = true;
1919
readonly MIN_SEARCH_TERM_LENGTH = 2;

src/app/modules/time-clock/store/entry.effects.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ describe('TimeEntryActionEffects', () => {
417417
effects.loadEntriesByTimeRange$.subscribe(action => {
418418
expect(toastrService.warning).toHaveBeenCalledWith(
419419
'Still loading. Limit of ' + MAX_NUMBER_OF_ENTRIES_FOR_REPORTS +
420-
' entries reached, try filtering the request by users or date.' +
420+
' entries reached, try filtering the request.' +
421421
' Some information may be missing.'
422422
);
423423
});

0 commit comments

Comments
 (0)