-
Notifications
You must be signed in to change notification settings - Fork 9
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
Adds 'updated' and 'created' timestamps for desktop site #228
Conversation
Codecov Report
@@ Coverage Diff @@
## master #228 +/- ##
=====================================
Coverage 100% 100%
=====================================
Files 7 7
Lines 76 76
=====================================
Hits 76 76 Continue to review full report at Codecov.
|
web/templates/page/index.html.eex
Outdated
<%= for issue <- @issues do %> | ||
<%= component("issue_card", issue: issue, labels: get_label_data(issue) ) %> | ||
<% end %> | ||
</div> | ||
</> |
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.
🚩
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.
Atom packages going crazy?? My bad.
web/templates/page/index.html.eex
Outdated
<th class="pv3 pl2">Repo</th> | ||
<th><%= sort_link @conn, @rummage, [field: :repo_name, name: "Repo"] %></th> | ||
<th><%= sort_link @conn, @rummage, [field: :gh_created_at, name: "Created"] %></th> | ||
<th><%= sort_link @conn, @rummage, [field: :gh_updated_at, name: "Updated"] %></th> |
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.
Not sure if you need these [
s, might be nicer without them
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.
Oh yeah course-keyword lists 🤦♂️. That's what we get for referencing the rummage docs.
The mobile site shows created/updated but the desktop doesn't.
Also adds sort by links for repo, updated and created. Fixes #227
fixes #225