Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
fix: TT-413 show projects when you do not have the latest projects
  • Loading branch information
ararcos committed Dec 1, 2021
commit 78ecc0c1429d8c9f1878ac12a5d73e2ec2a98d45
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export class TechnologiesComponent implements OnInit, OnDestroy {
readonly ALLOW_SELECT_MULTIPLE = true;
readonly ALLOW_SEARCH = true;
readonly MIN_SEARCH_TERM_LENGTH = 2;
readonly TYPE_TO_SEARCH_TEXT = 'Please enter 2 or more characters';
readonly TYPE_TO_SEARCH_TEXT = 'Please enter 2 or more characters to search for technologies ';
readonly WAITING_TIME_AFTER_KEY_UP = 400;

isLoading = false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,10 @@ export class ProjectListHoverComponent implements OnInit, OnDestroy {
this.recentProjectsSubscription = recentProjects$.subscribe((projects) => {
if (projects) {
this.listRecentProjects = projects;
this.listProjectsShowed = this.listRecentProjects;
}else{
this.listRecentProjects = this.listProjects;
}
this.listProjectsShowed = this.listRecentProjects;
});

this.updateEntrySubscription = this.actionsSubject$
Expand Down