Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
Frontend V2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GraphPolaris
Frontend V2
Commits
e8d76cd3
Commit
e8d76cd3
authored
7 months ago
by
Dennis Collaris
Committed by
Marcos Pieras
7 months ago
Browse files
Options
Downloads
Patches
Plain Diff
fix: silence missing key warning from react
parent
325ad006
No related branches found
No related tags found
1 merge request
!204
feat: schema panel tooltips, redesigned tooltip, minimap configuration option
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libs/shared/lib/vis/visualizations/nodelinkvis/components/NLPopup.tsx
+1
-1
1 addition, 1 deletion
...lib/vis/visualizations/nodelinkvis/components/NLPopup.tsx
with
1 addition
and
1 deletion
libs/shared/lib/vis/visualizations/nodelinkvis/components/NLPopup.tsx
+
1
−
1
View file @
e8d76cd3
...
...
@@ -19,7 +19,7 @@ export const NLPopUp: React.FC<NLPopUpProps> = ({ data }) => {
</
div
>
)
:
(
Object
.
entries
(
data
).
map
(([
k
,
v
],
index
)
=>
(
<
div
className
=
"flex flex-row gap-1 items-center min-h-5"
>
<
div
className
=
"flex flex-row gap-1 items-center min-h-5"
key
=
{
k
}
>
<
span
className
=
{
`font-semibold truncate min-w-[40%]`
}
>
{
k
}
</
span
>
<
span
className
=
"ml-auto text-right truncate grow-1 flex items-center"
>
{
v
!==
undefined
&&
(
typeof
v
!==
'
object
'
||
Array
.
isArray
(
v
))
&&
v
!=
''
?
(
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment