This is an automated email from the ASF dual-hosted git repository. andytaylor pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/activemq-artemis-console.git
commit 1e636d30132b9259e9fa438a857ac8264f4cb55a Author: Vilius Ĺ umskas <[email protected]> AuthorDate: Tue Jul 22 11:21:24 2025 +0300 Overload correct loader --- .../packages/artemis-console-plugin/src/messages/SendMessage.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/artemis-console-extension/artemis-extension/packages/artemis-console-plugin/src/messages/SendMessage.tsx b/artemis-console-extension/artemis-extension/packages/artemis-console-plugin/src/messages/SendMessage.tsx index 38e032d..0a398d3 100644 --- a/artemis-console-extension/artemis-extension/packages/artemis-console-plugin/src/messages/SendMessage.tsx +++ b/artemis-console-extension/artemis-extension/packages/artemis-console-plugin/src/messages/SendMessage.tsx @@ -16,7 +16,7 @@ */ import React, { FormEvent, useRef, useState } from 'react' import * as monacoEditor from 'monaco-editor' -import { monacoLoader } from '@monaco-editor/react' +import { loader } from '@monaco-editor/react' import xmlFormat from 'xml-formatter' import { @@ -46,7 +46,7 @@ import { eventService } from '@hawtio/react' import { artemisService } from '../artemis-service' import { Message } from './MessageView' -monacoLoader.config({ monacoEditor }) +loader.config({ monacoEditor }) type SendBodyMessageProps = { onBodyChange: (body: string) => void --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] For further information, visit: https://activemq.apache.org/contact
