Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
0b91e9b
Cleanup [Jobs panel] remove redundant components
illia-prokopchuk Mar 18, 2025
8c18597
Fix [Feature vectors] usage example (#3186)
alxtkr77 Apr 1, 2025
979f1ba
Fix [Jobs monitoring] failed to load job artifact preview (#3190)
illia-prokopchuk Apr 3, 2025
e6fb881
Impl [Projects] Move Redux to RTK (#3145)
mariana-furyk Apr 4, 2025
81bf1bf
Fix [Functions] Missing "Version tag" in the function popup screen (…
adi-gini Apr 4, 2025
b1cd1df
Impl [Details] Move Redux to RTK (#3157)
mariana-furyk Apr 7, 2025
6bd117e
Impl [Functions] Move Redux to RTK (#3182)
mariana-furyk Apr 7, 2025
486dfe1
Fix [Project settings] The Delete project button is not clickable (#…
Taras-Hlukhovetskyi Apr 7, 2025
98ee7c1
Fix [Batch run] unexpected application error when searching functions…
Taras-Hlukhovetskyi Apr 7, 2025
a05b5f6
Fix [Mock] No db_key, uid, tag in artifact details (#3193)
illia-prokopchuk Apr 7, 2025
c06b296
Fix [Preview popup] Wrong table header (#3196)
illia-prokopchuk Apr 7, 2025
7f4c033
Bump axios in the npm_and_yarn group across 1 directory (#3171)
dependabot[bot] Apr 7, 2025
7d33f8a
Fix [ML functions] "This function either does not exist or was delete…
illia-prokopchuk Apr 8, 2025
e60b54b
Fix [Alerts] Metrics data does not displayed (#3208)
mariana-furyk Apr 8, 2025
e5d102b
Fix [Jobs] The project name is missing in the runs/pipelines/schedule…
mariana-furyk Apr 8, 2025
f145fa4
Fix [Details] continuous movement of the header when reducing the scr…
illia-prokopchuk Apr 8, 2025
3777421
Fix [UI] function remains in UI after it was deleted (#3223)
illia-prokopchuk Apr 10, 2025
fde1142
Tests [QA] v1.10.0-rc1 (#3224)
EZheln Apr 12, 2025
091369a
Fix [Projects] render issues (#3219)
Taras-Hlukhovetskyi Apr 12, 2025
612f2fd
Fix [Feature store] Checkbox is not clickable (#3220)
illia-prokopchuk Apr 12, 2025
852b23b
Fix [Model endpoints] render issue with histogram on the Features ana…
Taras-Hlukhovetskyi Apr 12, 2025
f656f99
Fix [Monitor Workflows] Wrong broken link redirection (#3218)
Taras-Hlukhovetskyi Apr 13, 2025
4c13f35
Fix [ML functions] "This function either does not exist or was delete…
illia-prokopchuk Apr 14, 2025
1272966
Bump DRC version `2.2.24` (#3230)
ilan7empest Apr 14, 2025
cf37784
Fix [UI] validation rules block flashes when scrolling (#3210)
illia-prokopchuk Apr 14, 2025
7a02ad0
Fix [UI] The Pagination block is displayed on internal refresh (#3214)
illia-prokopchuk Apr 14, 2025
cd02ec7
Fix [Action bar] request is sent despite "name' filter is invalid (#3…
Taras-Hlukhovetskyi Apr 14, 2025
341a2b6
Impl [LLM Prompt Artifact] Add navigation to LLM Prompt Artifacts scr…
mariana-furyk Apr 15, 2025
faabad8
Impl [Nuclio store] Move Redux to RTK (#3211)
Taras-Hlukhovetskyi Apr 17, 2025
fa10135
Tests [QA] v1.10.0 (#3232)
EZheln Apr 18, 2025
af31a40
Cleanup [Jobs panel] remove redundant components
illia-prokopchuk Apr 18, 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
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"@monaco-editor/react": "^4.6.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.3",
"@reduxjs/toolkit": "^1.8.1",
"axios": "1.7.4",
"axios": "1.8.2",
"bfj": "^7.0.2",
"browserslist": "^4.18.1",
"camelcase": "^6.2.1",
Expand All @@ -24,7 +24,7 @@
"final-form-arrays": "^3.1.0",
"fs-extra": "^10.0.0",
"identity-obj-proxy": "^3.0.0",
"iguazio.dashboard-react-controls": "2.2.22",
"iguazio.dashboard-react-controls": "2.2.24",
"is-wsl": "^1.1.0",
"js-base64": "^2.5.2",
"js-yaml": "^4.1.0",
Expand Down
11 changes: 11 additions & 0 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ const WorkflowsMonitoring = lazyRetry(
() => import('./components/ProjectsJobsMonitoring/WorkflowsMonitoring/WorkflowsMonitoring')
)
const Documents = lazyRetry(() => import('./components/Documents/Documents'))
const LLMPrompts = lazyRetry(() => import('./components/LLMPrompts/LLMPrompts'))

const App = () => {
const { isNuclioModeDisabled } = useNuclioMode()
Expand Down Expand Up @@ -324,6 +325,16 @@ const App = () => {
<Route path={path} element={<Documents isAllVersions={[2, 3].includes(index)} />} />
</Fragment>
))}
{[
'projects/:projectName/llm-prompts',
'projects/:projectName/llm-prompts/:promptName/:id/:tab',
`projects/:projectName/llm-prompts/:promptName/${ALL_VERSIONS_PATH}`,
`projects/:projectName/llm-prompts/:promptName/${ALL_VERSIONS_PATH}/:id/:tab`
].map((path, index) => (
<Fragment key={index}>
<Route path={path} element={<LLMPrompts isAllVersions={[2, 3].includes(index)} />} />
</Fragment>
))}
<Route path="*" element={<Navigate replace to="projects" />} />
<Route path="/" element={<Navigate replace to="projects" />} />
</Route>
Expand Down
161 changes: 0 additions & 161 deletions src/actions/details.js

This file was deleted.

Loading