Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9d785c commit a8ea61eCopy full SHA for a8ea61e
src/app/app.component.ts
@@ -9,7 +9,7 @@ import {Subject} from "rxjs";
9
styleUrls: ['./app.component.css']
10
})
11
export class AppComponent implements OnInit {
12
- title = 'Welcome to Github';
+ title = 'Welcome to Github Page';
13
14
15
cache = {
@@ -120,13 +120,11 @@ export class AppComponent implements OnInit {
120
* @returns User
121
*/
122
findUserInCache(user: User): User {
123
-
124
for (var i = 0; i < this.cache.selectedUser.length; i++) {
125
if (this.cache.selectedUser[i].login == user.login) {
126
return this.cache.selectedUser[i];
127
}
128
129
130
return null;
131
132
0 commit comments