-
Notifications
You must be signed in to change notification settings - Fork 131
Week 7 - GitHub Tracker Jenny F #102
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
| const profileImage = document.getElementById('profileImage') | ||
| const projectBox = document.getElementById('projects') | ||
| const repoName = document.getElementById('reponame') | ||
|
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code looks neat and easy to understand
Sherin-Susan-Thomas
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good Job with the project. The code was neatly written and very easy to understand. The blue requirements were fulfilled except the fetching all the repos part which should be corrected. The styling was good and page was responsive.
| const options = { | ||
| method: 'GET', | ||
| headers: { | ||
| Authorization: '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' // my TOKEN |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Its better to add token in separate file and add it to gitignore to prevent GitHub revoking the key
| h3{ | ||
| font-size: 35pt; | ||
| text-align: center; | ||
| color: rgb(216, 83, 128); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good Job with the styling
| </div> | ||
| `; | ||
| getPullRequests(technigoRepos); | ||
| drawChart(technigoRepos.length); //* if this one is commented out, more projects will appear. Do not know why. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if you can change the drawChart(technigoRepos.length) to line 61 the error will get corrected
No description provided.