-
Notifications
You must be signed in to change notification settings - Fork 1
Bump version 2.7.10 #135
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
Bump version 2.7.10 #135
Changes from all commits
cb2c567
d3276fe
752b9af
93240e9
6a956fe
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -184,7 +184,8 @@ export default function NewInteg({ allIntegURL }) { | |
| if (!window.opener && !Object.keys(flow).length) { | ||
| navigate('/flow/new') | ||
| } | ||
| }, [flow, navigate]) | ||
| // eslint-disable-next-line react-hooks/exhaustive-deps | ||
| }, []) | ||
|
Comment on lines
+187
to
+188
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bypassing the }, [flow, navigate]) |
||
|
|
||
| const NewIntegs = () => { | ||
| switch (integUrlName) { | ||
|
|
||
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 result of
json_decodeshould be verified as an array before accessing its keys. If the manifest file is missing, unreadable, or contains invalid JSON,json_decodewill returnnull. Attempting to access themain.jsxoffset on a null value will trigger aTypeErrorin PHP 8.0+.