Skip to content

Commit 78ecc0c

Browse files
committed
fix: TT-413 show projects when you do not have the latest projects
1 parent 950e4c7 commit 78ecc0c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export class TechnologiesComponent implements OnInit, OnDestroy {
1717
readonly ALLOW_SELECT_MULTIPLE = true;
1818
readonly ALLOW_SEARCH = true;
1919
readonly MIN_SEARCH_TERM_LENGTH = 2;
20-
readonly TYPE_TO_SEARCH_TEXT = 'Please enter 2 or more characters';
20+
readonly TYPE_TO_SEARCH_TEXT = 'Please enter 2 or more characters to search for technologies ';
2121
readonly WAITING_TIME_AFTER_KEY_UP = 400;
2222

2323
isLoading = false;

src/app/modules/time-clock/components/project-list-hover/project-list-hover.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,10 @@ export class ProjectListHoverComponent implements OnInit, OnDestroy {
7373
this.recentProjectsSubscription = recentProjects$.subscribe((projects) => {
7474
if (projects) {
7575
this.listRecentProjects = projects;
76-
this.listProjectsShowed = this.listRecentProjects;
7776
}else{
7877
this.listRecentProjects = this.listProjects;
7978
}
79+
this.listProjectsShowed = this.listRecentProjects;
8080
});
8181

8282
this.updateEntrySubscription = this.actionsSubject$

0 commit comments

Comments
 (0)