-
Notifications
You must be signed in to change notification settings - Fork 257
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
chore(ui): upgrade dependencies #5898
Conversation
36a2422
to
e42ad59
Compare
@@ -332,7 +336,7 @@ export const updateTagFilterAsync = ( | |||
|
|||
try { | |||
dispatch(updateTagFilter(dashboardID, tagFilter)) | |||
await dispatch(getAnnotationsAsync(indexURL, dashboardID)) | |||
await getAnnotationsAsync(indexURL, dashboardID)(dispatch, getState) |
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.
The await
statement was repaired to be effective, the original await was malformed (did nothing)
@@ -115,7 +115,7 @@ export const DEFAULT_THRESHOLDS_LIST_COLORS = [ | |||
hex: THRESHOLD_COLORS[11].hex, | |||
id: THRESHOLD_TYPE_BASE, | |||
name: THRESHOLD_COLORS[11].name, | |||
value: -999999999999999999, | |||
value: -1000000000000000000, |
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.
-999999999999999999
(as a number constant) loses precision, eslint complains about it
8d7f2e4
to
17c2d5d
Compare
This PR upgrades existing yarn.lock dependencies using
yarn upgrade --latest
typescript
(4.6.3),eslint
to support the newest typescript, andbabel
It also includes a bunch of fixes after upgrade as described by particular git commit messages, most of them are about fixing redux/redux-thunk type definitions.