Spaces:
Running
Running
Tai Truong
commited on
Commit
·
fcc732f
1
Parent(s):
1ae2974
adding header
Browse files
package-lock.json
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"name": "agent-flow",
|
| 3 |
+
"lockfileVersion": 3,
|
| 4 |
+
"requires": true,
|
| 5 |
+
"packages": {}
|
| 6 |
+
}
|
src/frontend/package-lock.json
CHANGED
|
@@ -4990,9 +4990,9 @@
|
|
| 4990 |
}
|
| 4991 |
},
|
| 4992 |
"node_modules/@tanstack/react-virtual": {
|
| 4993 |
-
"version": "3.11.
|
| 4994 |
-
"resolved": "https://registry.npmjs.org/@tanstack/react-virtual/-/react-virtual-3.11.
|
| 4995 |
-
"integrity": "sha512-
|
| 4996 |
"dependencies": {
|
| 4997 |
"@tanstack/virtual-core": "3.10.9"
|
| 4998 |
},
|
|
@@ -5627,12 +5627,12 @@
|
|
| 5627 |
}
|
| 5628 |
},
|
| 5629 |
"node_modules/@types/react-dom": {
|
| 5630 |
-
"version": "18.3.
|
| 5631 |
-
"resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.
|
| 5632 |
-
"integrity": "sha512-
|
| 5633 |
"devOptional": true,
|
| 5634 |
-
"
|
| 5635 |
-
"@types/react": "^18"
|
| 5636 |
}
|
| 5637 |
},
|
| 5638 |
"node_modules/@types/responselike": {
|
|
@@ -9539,9 +9539,9 @@
|
|
| 9539 |
}
|
| 9540 |
},
|
| 9541 |
"node_modules/katex": {
|
| 9542 |
-
"version": "0.16.
|
| 9543 |
-
"resolved": "https://registry.npmjs.org/katex/-/katex-0.16.
|
| 9544 |
-
"integrity": "sha512-
|
| 9545 |
"funding": [
|
| 9546 |
"https://opencollective.com/katex",
|
| 9547 |
"https://github.com/sponsors/katex"
|
|
|
|
| 4990 |
}
|
| 4991 |
},
|
| 4992 |
"node_modules/@tanstack/react-virtual": {
|
| 4993 |
+
"version": "3.11.1",
|
| 4994 |
+
"resolved": "https://registry.npmjs.org/@tanstack/react-virtual/-/react-virtual-3.11.1.tgz",
|
| 4995 |
+
"integrity": "sha512-orn2QNe5tF6SqjucHJ6cKTKcRDe3GG7bcYqPNn72Yejj7noECdzgAyRfGt2pGDPemhYim3d1HIR/dgruCnLfUA==",
|
| 4996 |
"dependencies": {
|
| 4997 |
"@tanstack/virtual-core": "3.10.9"
|
| 4998 |
},
|
|
|
|
| 5627 |
}
|
| 5628 |
},
|
| 5629 |
"node_modules/@types/react-dom": {
|
| 5630 |
+
"version": "18.3.3",
|
| 5631 |
+
"resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.3.tgz",
|
| 5632 |
+
"integrity": "sha512-uTYkxTLkYp41nq/ULXyXMtkNT1vu5fXJoqad6uTNCOGat5t9cLgF4vMNLBXsTOXpdOI44XzKPY1M5RRm0bQHuw==",
|
| 5633 |
"devOptional": true,
|
| 5634 |
+
"peerDependencies": {
|
| 5635 |
+
"@types/react": "^18.0.0"
|
| 5636 |
}
|
| 5637 |
},
|
| 5638 |
"node_modules/@types/responselike": {
|
|
|
|
| 9539 |
}
|
| 9540 |
},
|
| 9541 |
"node_modules/katex": {
|
| 9542 |
+
"version": "0.16.15",
|
| 9543 |
+
"resolved": "https://registry.npmjs.org/katex/-/katex-0.16.15.tgz",
|
| 9544 |
+
"integrity": "sha512-yE9YJIEAk2aZ+FL/G8r+UGw0CTUzEA8ZFy6E+8tc3spHUKq3qBnzCkI1CQwGoI9atJhVyFPEypQsTY7mJ1Pi9w==",
|
| 9545 |
"funding": [
|
| 9546 |
"https://opencollective.com/katex",
|
| 9547 |
"https://github.com/sponsors/katex"
|
src/frontend/src/components/core/appHeaderComponent/index.tsx
CHANGED
|
@@ -53,6 +53,7 @@ export default function AppHeader(): JSX.Element {
|
|
| 53 |
data-testid="icon-ChevronLeft"
|
| 54 |
>
|
| 55 |
<img src={logo} className="w-6" />
|
|
|
|
| 56 |
</Button>
|
| 57 |
{ENABLE_DATASTAX_LANGFLOW && (
|
| 58 |
<>
|
|
|
|
| 53 |
data-testid="icon-ChevronLeft"
|
| 54 |
>
|
| 55 |
<img src={logo} className="w-6" />
|
| 56 |
+
<span className="sr-only bold text-muted-foreground">OPENDIGITAL.NO</span>
|
| 57 |
</Button>
|
| 58 |
{ENABLE_DATASTAX_LANGFLOW && (
|
| 59 |
<>
|