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
Merge requests
!135
geo intergation
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
geo intergation
feat/get_intergation
into
main
Overview
1
Commits
56
Pipelines
1
Changes
2
Merged
Leonardo Christino
requested to merge
feat/get_intergation
into
main
10 months ago
Overview
1
Commits
56
Pipelines
1
Changes
2
Expand
0
0
Merge request reports
Viewing commit
270198c7
Prev
Next
Show latest version
2 files
+
4
−
4
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
270198c7
feat(visManager): schema settings
· 270198c7
Vink, S.A. (Sjoerd)
authored
11 months ago
libs/shared/lib/components/dropdowns/index.tsx
+
2
−
2
Options
@@ -11,7 +11,7 @@ type DropdownContainerProps = {
export
const
DropdownContainer
=
React
.
forwardRef
<
HTMLDivElement
,
DropdownContainerProps
>
(
({
children
,
className
},
ref
:
React
.
ForwardedRef
<
HTMLDivElement
>
)
=>
{
return
(
<
div
className
=
{
`
border-1 border-secondary-800
relative inline-block text-left
${
className
&&
className
}
`
}
ref
=
{
ref
}
>
<
div
className
=
{
`relative inline-block text-left
${
className
&&
className
}
`
}
ref
=
{
ref
}
>
{
children
}
</
div
>
);
@@ -32,7 +32,7 @@ export function DropdownButton({ title, onClick, size, disabled }: DropdownButto
return
(
<>
<
button
className
=
{
`inline-flex w-full justify-between items-center gap-x-1.5 rounded bg-light
${
textSizeClass
}
${
paddingClass
}
text-secondary-900 shadow-sm
ring-1 ring-inset ring-secondary-300
hover:bg-secondary-50 disabled:bg-secondary-100 disabled:cursor-not-allowed disabled:text-secondary-400`
}
className
=
{
`inline-flex
border
w-full justify-between items-center gap-x-1.5 rounded bg-light
${
textSizeClass
}
${
paddingClass
}
text-secondary-900 shadow-sm hover:bg-secondary-50 disabled:bg-secondary-100 disabled:cursor-not-allowed disabled:text-secondary-400`
}
onClick
=
{
onClick
}
disabled
=
{
disabled
}
>
Loading