Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
test-converter
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository 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
klamas
test-converter
Commits
465d0764
Commit
465d0764
authored
11 months ago
by
TobiasReiter
Browse files
Options
Downloads
Patches
Plain Diff
fixed details modal
parent
b0307ef5
No related branches found
Branches containing commit
No related tags found
1 merge request
!54
feat: details modal fixes #51
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
frontend/app/components/modal/InfoModal.jsx
+1
-1
1 addition, 1 deletion
frontend/app/components/modal/InfoModal.jsx
frontend/app/components/modal/Modal.jsx
+1
-1
1 addition, 1 deletion
frontend/app/components/modal/Modal.jsx
with
2 additions
and
2 deletions
frontend/app/components/modal/InfoModal.jsx
+
1
−
1
View file @
465d0764
...
...
@@ -97,7 +97,7 @@ const InfoModal = ({ show, onClose, details }) => {
{
data
.
modal
.
click
}
</
Link
>
</
div
>
<
div
className
=
"
grid grid-cols-1 md:grid-cols-2 gap-8
"
>
<
div
className
=
"
flex w-full
"
>
<
div
>
<
Section
title
=
{
data
.
modal
.
questionCount
}
>
<
span
className
=
"pl-1"
>
{
details
?.
questionCount
||
"
0
"
}
</
span
>
...
...
This diff is collapsed.
Click to expand it.
frontend/app/components/modal/Modal.jsx
+
1
−
1
View file @
465d0764
...
...
@@ -24,7 +24,7 @@ const Modal = ({ show, onClose, children }) => {
return
(
<
div
className
=
"fixed inset-0 z-50 flex items-center justify-center"
>
<
div
className
=
"bg-black bg-opacity-50 fixed inset-0"
onClick
=
{
onClose
}
/>
<
div
className
=
"bg-white rounded-lg shadow-md p-6 max-h-[550px] overflow-y-auto relative z-10"
>
<
div
className
=
"bg-white rounded-lg shadow-md p-6 max-h-[550px]
min-w-[600px]
overflow-y-auto relative z-10"
>
{
children
}
</
div
>
</
div
>
...
...
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