Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
7e6cac1
Make the links clickable within Dev Console
saikatsarkar056 Nov 5, 2025
0a1da76
Merge branch 'main' of github.com:elastic/kibana into clickable-links…
saikatsarkar056 Nov 5, 2025
8ba2336
Make the links clickable within Dev Console
saikatsarkar056 Nov 5, 2025
a694a38
Merge branch 'main' of github.com:elastic/kibana into clickable-links…
saikatsarkar056 Nov 5, 2025
9956b79
Make the links clickable within Dev Console
saikatsarkar056 Nov 5, 2025
6b63c51
Added FTR test
saikatsarkar056 Nov 5, 2025
4105824
Added FTR test
saikatsarkar056 Nov 5, 2025
6b98c1c
Merge branch 'main' of github.com:elastic/kibana into clickable-links…
saikatsarkar056 Nov 6, 2025
7187942
Disable the links by default for all editors
saikatsarkar056 Nov 6, 2025
34f594f
Enable the links option for console only
saikatsarkar056 Nov 6, 2025
b48ebe8
Merge branch 'main' of github.com:elastic/kibana into clickable-links…
saikatsarkar056 Nov 6, 2025
d44ddd6
Update the FTR tests
saikatsarkar056 Nov 6, 2025
97af2d3
Update the FTR tests
saikatsarkar056 Nov 6, 2025
55fb519
Update the FTR tests
saikatsarkar056 Nov 6, 2025
a1a5042
Update the FTR tests
saikatsarkar056 Nov 6, 2025
53df6b8
Update the FTR tests
saikatsarkar056 Nov 6, 2025
5afa5cc
Update the FTR tests
saikatsarkar056 Nov 6, 2025
510df50
Update the FTR tests
saikatsarkar056 Nov 6, 2025
c0a847e
Update the FTR tests
saikatsarkar056 Nov 6, 2025
d2f8c73
Update the FTR tests
saikatsarkar056 Nov 7, 2025
ffdc7d7
Update the FTR tests
saikatsarkar056 Nov 7, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ import 'monaco-editor/esm/vs/editor/contrib/suggest/browser/suggestController.js
import 'monaco-editor/esm/vs/editor/contrib/hover/browser/hover.js'; // Needed for hover
import 'monaco-editor/esm/vs/editor/contrib/parameterHints/browser/parameterHints.js'; // Needed for signature
import 'monaco-editor/esm/vs/editor/contrib/bracketMatching/browser/bracketMatching.js'; // Needed for brackets matching highlight
import 'monaco-editor/esm/vs/editor/contrib/links/browser/links.js'; // Needed for clickable links with Cmd/Ctrl+Click

import 'monaco-editor/esm/vs/editor/contrib/codeAction/browser/codeAction.js';
import 'monaco-editor/esm/vs/editor/contrib/codeAction/browser/codeActionCommands.js';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -309,6 +309,8 @@ export const MonacoEditor = ({
hover: {
above: false,
},
// Enable clickable links in the editor (Cmd/Ctrl+Click to open)
links: true,
}}
suggestionProvider={suggestionProvider}
enableFindAction={true}
Expand Down