-
-
Notifications
You must be signed in to change notification settings - Fork 404
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
feat: display new fields in orgs table #10499
feat: display new fields in orgs table #10499
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #10499 +/- ##
==========================================
- Coverage 49.54% 49.33% -0.21%
==========================================
Files 67 76 +9
Lines 20650 21702 +1052
Branches 4980 5208 +228
==========================================
+ Hits 10231 10707 +476
- Misses 9131 9681 +550
- Partials 1288 1314 +26 ☔ View full report in Codecov by Sentry. |
<td>[% display_date_tag(org.created_t) %]</td> | ||
<td>[% display_date_tag(org.last_logged_member_t) %]</td> | ||
<td>[% org.last_import_type %]</td> |
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.
It seems that you are displaying the wrong value here.
In you screenshot wee can see "Manual import" in the "Last import date" column.
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.
Right, the last import data is missing.
<td>[% display_date_tag(org.created_t) %]</td> | ||
<td>[% display_date_tag(org.last_logged_member_t) %]</td> | ||
<td>[% org.last_import_type %]</td> | ||
<td>[% org.creator %]</td> |
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.
It seems that you are displaying the creator instead of the data source of the last import.
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.
Looks good to me
What
Screenshot