Skip to content

Commit 5bfa634

Browse files
Add Agentic directives (#1392)
* Add Agentic directives * Add a code editor to the MCP dialog --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent f3c056c commit 5bfa634

File tree

44 files changed

+1124
-484
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+1124
-484
lines changed

package-lock.json

Lines changed: 234 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "digma-ui",
3-
"version": "16.0.1",
3+
"version": "16.1.0-alpha.0",
44
"description": "Digma UI",
55
"scripts": {
66
"lint:eslint": "eslint --cache .",
@@ -118,12 +118,14 @@
118118
"zip-webpack-plugin": "^4.0.2"
119119
},
120120
"dependencies": {
121+
"@codemirror/lang-json": "^6.0.2",
121122
"@floating-ui/react": "^0.25.1",
122123
"@formkit/auto-animate": "^0.8.2",
123124
"@microsoft/fetch-event-source": "^2.0.1",
124125
"@react-oauth/google": "^0.12.1",
125126
"@reduxjs/toolkit": "^2.5.0",
126127
"@tanstack/react-table": "^8.7.8",
128+
"@uiw/react-codemirror": "^4.23.14",
127129
"@xyflow/react": "^12.6.4",
128130
"allotment": "^1.19.0",
129131
"axios": "^1.8.4",

src/components/Admin/Home/index.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ export const Home = () => {
6666
setIssuesQuery(undefined);
6767
};
6868

69+
// TODO: replace with useEffect
6970
useMount(() => {
7071
if (environmentParam) {
7172
dispatch(setSelectedEnvironmentId(environmentParam));

src/components/Admin/Reports/CodeIssues/index.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,7 @@ export const CodeIssues = () => {
208208
dispatch(setSelectedEndpoints([]));
209209
};
210210

211+
// TODO: replace with useEffect
211212
useMount(() => {
212213
if (environmentParam) {
213214
dispatch(setSelectedEnvironmentId(environmentParam));

0 commit comments

Comments
 (0)