better table loading | fix force factory rerender

This commit is contained in:
typescreep
2025-07-17 19:48:50 +03:00
parent ceb2bf7156
commit 51d64abf3f
3 changed files with 6 additions and 6 deletions

8
package-lock.json generated
View File

@@ -11,7 +11,7 @@
"@ant-design/icons": "5.6.0",
"@monaco-editor/react": "4.6.0",
"@originjs/vite-plugin-federation": "1.3.6",
"@prorobotech/openapi-k8s-toolkit": "^0.0.1-alpha.59",
"@prorobotech/openapi-k8s-toolkit": "^0.0.1-alpha.60",
"@readme/openapi-parser": "4.0.0",
"@reduxjs/toolkit": "2.2.5",
"@tanstack/react-query": "5.62.2",
@@ -2798,9 +2798,9 @@
}
},
"node_modules/@prorobotech/openapi-k8s-toolkit": {
"version": "0.0.1-alpha.59",
"resolved": "https://registry.npmjs.org/@prorobotech/openapi-k8s-toolkit/-/openapi-k8s-toolkit-0.0.1-alpha.59.tgz",
"integrity": "sha512-hVGgBk2q0a27h9FwASZ7FwzOmi3gw6oh7ch4Nqy+fEmVvFHmIUSzmYIfT1xCzJvILkeXGtXdxtK+8aFegh55yQ==",
"version": "0.0.1-alpha.60",
"resolved": "https://registry.npmjs.org/@prorobotech/openapi-k8s-toolkit/-/openapi-k8s-toolkit-0.0.1-alpha.60.tgz",
"integrity": "sha512-8AXu/r5FkYnbrvg0Nic3P+Ax10TUhGutqCa+II6sJdEk1mgb+71pAjMsybgt1aED+zmpTz64IqOjFv90gQbDjQ==",
"license": "MIT",
"dependencies": {
"@monaco-editor/react": "4.6.0",

View File

@@ -20,7 +20,7 @@
"@ant-design/icons": "5.6.0",
"@monaco-editor/react": "4.6.0",
"@originjs/vite-plugin-federation": "1.3.6",
"@prorobotech/openapi-k8s-toolkit": "0.0.1-alpha.59",
"@prorobotech/openapi-k8s-toolkit": "0.0.1-alpha.60",
"@readme/openapi-parser": "4.0.0",
"@reduxjs/toolkit": "2.2.5",
"@tanstack/react-query": "5.62.2",

View File

@@ -43,7 +43,7 @@ export const FactoryPage: FC<TFactoryPageProps> = ({ forcedTheme }) => {
<NavigationContainer>
<ManageableBreadcrumbs idToCompare={breadcrumbsId} />
</NavigationContainer>
<Factory setSidebarTags={setCurrentTags} />
<Factory setSidebarTags={setCurrentTags} key={key} />
</BaseTemplate>
)
}