Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
proxy-manager-frontend
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
aolda
proxy-manager-frontend
Commits
a31de26f
Commit
a31de26f
authored
2 weeks ago
by
한동현
Browse files
Options
Downloads
Patches
Plain Diff
feat: 인증서 목록 페이지 시스템 인증서 스타일 변경
parent
73f4b9af
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/pages/certificate/List.tsx
+10
-8
10 additions, 8 deletions
src/pages/certificate/List.tsx
with
10 additions
and
8 deletions
src/pages/certificate/List.tsx
+
10
−
8
View file @
a31de26f
...
...
@@ -148,10 +148,8 @@ export default function CertificateList() {
<
TableRow
key
=
{
certificate
.
id
}
>
<
TableCell
>
<
HoverCard
>
<
HoverCardTrigger
>
<
span
className
=
{
certificate
.
projectId
!==
selectedProject
?.
id
?
'
italic
'
:
''
}
>
<
HoverCardTrigger
className
=
{
certificate
.
projectId
!==
selectedProject
?.
id
?
'
opacity-70
'
:
''
}
>
{
certificate
.
domain
}
</
span
>
</
HoverCardTrigger
>
<
HoverCardContent
className
=
"w-80 whitespace-normal"
>
<
div
className
=
"flex justify-between space-x-4"
>
...
...
@@ -176,9 +174,13 @@ export default function CertificateList() {
</
HoverCardContent
>
</
HoverCard
>
</
TableCell
>
<
TableCell
>
{
certificate
.
email
}
</
TableCell
>
<
TableCell
>
{
certificate
.
expiresAt
}
</
TableCell
>
<
TableCell
>
<
TableCell
className
=
{
certificate
.
projectId
!==
selectedProject
?.
id
?
'
opacity-70
'
:
''
}
>
{
certificate
.
email
}
</
TableCell
>
<
TableCell
className
=
{
certificate
.
projectId
!==
selectedProject
?.
id
?
'
opacity-70
'
:
''
}
>
{
certificate
.
expiresAt
}
</
TableCell
>
<
TableCell
className
=
{
certificate
.
projectId
!==
selectedProject
?.
id
?
'
opacity-70
'
:
''
}
>
<
div
className
=
"flex justify-center items-center gap-1"
>
{
certificate
.
challenge
===
'
http
'
?
(
<
Badge
variant
=
"secondary"
>
...
...
@@ -193,7 +195,7 @@ export default function CertificateList() {
)
}
</
div
>
</
TableCell
>
<
TableCell
>
<
TableCell
className
=
{
certificate
.
projectId
!==
selectedProject
?.
id
?
'
opacity-70
'
:
''
}
>
<
div
className
=
"flex justify-center items-center gap-2"
>
<
Button
disabled
=
{
selectedProject
?.
role
!==
'
admin
'
||
certificate
.
projectId
!==
selectedProject
.
id
}
...
...
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