Skip to content

Commit

Permalink
Merge branch 'master' into dependabot/maven/org.codehaus.mojo-exec-ma…
Browse files Browse the repository at this point in the history
…ven-plugin-3.5.0
  • Loading branch information
bernd authored Oct 23, 2024
2 parents bbc16a1 + 9bec368 commit 6fdd592
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ class EventNotificationForm extends React.Component<EventNotificationFormProps,
const { isSubmitEnabled } = this.state;

const notificationPlugin = getNotificationPlugin(notification.config.type);
const notificationFormComponent = notificationPlugin.formComponent
const notificationFormComponent = notificationPlugin?.formComponent
? React.createElement(notificationPlugin.formComponent, {
config: notification.config,
onChange: this.handleConfigChange,
Expand Down
6 changes: 5 additions & 1 deletion graylog2-web-interface/webpack/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,11 @@ const config = (target, appPath, rootPath, webInterfaceRoot, supportedBrowsers)
new webpack.DefinePlugin({
DEVELOPMENT: true,
}),
new ForkTsCheckerWebpackPlugin(),
new ForkTsCheckerWebpackPlugin({
typescript: {
memoryLimit: 4096,
},
}),
],
});
}
Expand Down

0 comments on commit 6fdd592

Please sign in to comment.