-
Notifications
You must be signed in to change notification settings - Fork 90
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
[frontend] Fix warnings and fix linter #915
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #915 +/- ##
============================================
+ Coverage 25.87% 26.17% +0.30%
- Complexity 969 973 +4
============================================
Files 439 439
Lines 10126 10130 +4
Branches 482 482
============================================
+ Hits 2620 2652 +32
+ Misses 7444 7416 -28
Partials 62 62 ☔ View full report in Codecov by Sentry. |
c15b0b4
to
8d486d5
Compare
2be80d4
to
4c4188c
Compare
@@ -104,7 +107,7 @@ const InjectList: FunctionComponent<Props> = ({ | |||
value: (injectDto: InjectResultDTO) => injectDto.inject_title, | |||
}, | |||
{ | |||
field: 'inject_status', | |||
field: 'inject_status.tracking_sent_date', |
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.
This filter is not working
We need to modify the back-end for that
@@ -118,7 +121,7 @@ const InjectList: FunctionComponent<Props> = ({ | |||
}, | |||
}, | |||
{ | |||
field: 'inject_status', | |||
field: 'inject_status.status_name', |
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.
This filter is not working
We need to modify the back-end for that
No description provided.