From c5a64216ac142929a9ff16f7a5a008b75c8c6714 Mon Sep 17 00:00:00 2001 From: Linus Pahl <46300478+linuspahl@users.noreply.github.com> Date: Wed, 23 Oct 2024 08:54:18 +0200 Subject: [PATCH 1/2] Fix can not read `formComponent` of `undefined` error on create event notification page. (#20755) --- .../event-notification-form/EventNotificationForm.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graylog2-web-interface/src/components/event-notifications/event-notification-form/EventNotificationForm.tsx b/graylog2-web-interface/src/components/event-notifications/event-notification-form/EventNotificationForm.tsx index 776700ad24a8..cef53c7a9f7a 100644 --- a/graylog2-web-interface/src/components/event-notifications/event-notification-form/EventNotificationForm.tsx +++ b/graylog2-web-interface/src/components/event-notifications/event-notification-form/EventNotificationForm.tsx @@ -139,7 +139,7 @@ class EventNotificationForm extends React.Component Date: Wed, 23 Oct 2024 11:53:10 +0200 Subject: [PATCH 2/2] Increase ForkTsCheckerWebpackPlugin memoryLimit (#20768) --- graylog2-web-interface/webpack/core.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/graylog2-web-interface/webpack/core.js b/graylog2-web-interface/webpack/core.js index 83ee31fceff8..fb4ee554c190 100644 --- a/graylog2-web-interface/webpack/core.js +++ b/graylog2-web-interface/webpack/core.js @@ -160,7 +160,11 @@ const config = (target, appPath, rootPath, webInterfaceRoot, supportedBrowsers) new webpack.DefinePlugin({ DEVELOPMENT: true, }), - new ForkTsCheckerWebpackPlugin(), + new ForkTsCheckerWebpackPlugin({ + typescript: { + memoryLimit: 4096, + }, + }), ], }); }