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
04c931c4
Commit
04c931c4
authored
2 months ago
by
한동현
Browse files
Options
Downloads
Patches
Plain Diff
feat: 라우팅 목록 포트 정보 추가
parent
bbfa96d9
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/pages/routing/List.tsx
+7
-5
7 additions, 5 deletions
src/pages/routing/List.tsx
with
7 additions
and
5 deletions
src/pages/routing/List.tsx
+
7
−
5
View file @
04c931c4
...
...
@@ -92,6 +92,7 @@ export default function RoutingList() {
<
TableHead
className
=
"w-48"
>
이름
</
TableHead
>
<
TableHead
>
도메인
</
TableHead
>
<
TableHead
>
인스턴스 IP
</
TableHead
>
<
TableHead
>
포트
</
TableHead
>
<
TableHead
className
=
"w-32 min-w-32 text-center"
>
기타 설정
</
TableHead
>
<
TableHead
className
=
"w-32 min-w-32 text-center"
>
작업
</
TableHead
>
</
TableRow
>
...
...
@@ -100,24 +101,24 @@ export default function RoutingList() {
{
routings
===
null
?
(
<>
<
TableRow
>
<
TableCell
colSpan
=
{
4
}
>
<
TableCell
colSpan
=
{
6
}
>
<
Skeleton
className
=
"w-full h-[1rem] my-2 rounded-full"
/>
</
TableCell
>
</
TableRow
>
<
TableRow
>
<
TableCell
colSpan
=
{
4
}
>
<
TableCell
colSpan
=
{
6
}
>
<
Skeleton
className
=
"w-full h-[1rem] my-2 rounded-full"
/>
</
TableCell
>
</
TableRow
>
<
TableRow
>
<
TableCell
colSpan
=
{
4
}
>
<
TableCell
colSpan
=
{
6
}
>
<
Skeleton
className
=
"w-full h-[1rem] my-2 rounded-full"
/>
</
TableCell
>
</
TableRow
>
</>
)
:
routings
.
length
===
0
?
(
<
TableRow
>
<
TableCell
colSpan
=
{
4
}
className
=
"text-center text-muted-foreground"
>
<
TableCell
colSpan
=
{
6
}
className
=
"text-center text-muted-foreground"
>
현재 프로젝트에 등록된 웹 프록시 설정이 없습니다.
</
TableCell
>
</
TableRow
>
...
...
@@ -132,7 +133,7 @@ export default function RoutingList() {
<
div
className
=
"space-y-1"
>
<
p
className
=
"text-sm font-semibold"
>
{
routing
.
name
}
</
p
>
<
p
className
=
"text-sm"
>
{
routing
.
domain
}
(
{
routing
.
ip
}
)
{
routing
.
domain
}
(
{
routing
.
ip
}
:
{
routing
.
port
}
)
</
p
>
<
p
className
=
"text-xs text-muted-foreground mt-2"
>
{
routing
.
createdAt
}
생성
</
p
>
<
p
className
=
"text-xs text-muted-foreground"
>
{
routing
.
updatedAt
}
수정
</
p
>
...
...
@@ -143,6 +144,7 @@ export default function RoutingList() {
</
TableCell
>
<
TableCell
>
{
routing
.
domain
}
</
TableCell
>
<
TableCell
>
{
routing
.
ip
}
</
TableCell
>
<
TableCell
>
{
routing
.
port
}
</
TableCell
>
<
TableCell
>
<
div
className
=
"flex justify-center items-center gap-1"
>
{
routing
.
certificateId
!==
undefined
?
(
...
...
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