@@ -60,7 +60,7 @@ export const RepoTagsList: React.FC<RepoTagsListProps> = ({
60
60
61
61
if ( ! isLoading && ! tagsList ?. length ) {
62
62
return (
63
- < div className = { cn ( ! isDirtyList && 'flex items-center justify-center py-[232px ]' ) } >
63
+ < div className = { cn ( ! isDirtyList && 'flex items-center justify-center py-[204px ]' ) } >
64
64
< NoData
65
65
iconName = { isDirtyList ? 'no-search-magnifying-glass' : 'no-data-tags' }
66
66
withBorder = { isDirtyList }
@@ -98,15 +98,15 @@ export const RepoTagsList: React.FC<RepoTagsListProps> = ({
98
98
}
99
99
100
100
return (
101
- < Table . Root variant = "asStackedList" >
101
+ < Table . Root variant = "asStackedList" tableClassName = "table-fixed" >
102
102
< Table . Header >
103
103
< Table . Row className = "pointer-events-none select-none" >
104
- < Table . Head className = "w-[124px ]" > { t ( 'views:repos.tag' , 'Tag' ) } </ Table . Head >
105
- < Table . Head className = "w-[330px ]" > { t ( 'views:repos.description' , 'Description' ) } </ Table . Head >
106
- < Table . Head className = "w-[150px ]" > { t ( 'views:repos.commit' , 'Commit' ) } </ Table . Head >
107
- < Table . Head className = "w-[178px ]" > { t ( 'views:repos.tagger' , 'Tagger' ) } </ Table . Head >
108
- < Table . Head className = "w-[130px ]" > { t ( 'views:repos.creationDate' , 'Creation date' ) } </ Table . Head >
109
- < Table . Head className = "w-[48px ]" />
104
+ < Table . Head className = "w-[11% ]" > { t ( 'views:repos.tag' , 'Tag' ) } </ Table . Head >
105
+ < Table . Head className = "w-[35% ]" > { t ( 'views:repos.description' , 'Description' ) } </ Table . Head >
106
+ < Table . Head className = "w-[16%] min-w-[128px ]" > { t ( 'views:repos.commit' , 'Commit' ) } </ Table . Head >
107
+ < Table . Head className = "w-[17% ]" > { t ( 'views:repos.tagger' , 'Tagger' ) } </ Table . Head >
108
+ < Table . Head className = "w-[16% ]" > { t ( 'views:repos.creationDate' , 'Creation date' ) } </ Table . Head >
109
+ < Table . Head className = "w-[5%] min-w-[32px ]" />
110
110
</ Table . Row >
111
111
</ Table . Header >
112
112
@@ -115,27 +115,31 @@ export const RepoTagsList: React.FC<RepoTagsListProps> = ({
115
115
) : (
116
116
< Table . Body hasHighlightOnHover >
117
117
{ tagsList . map ( tag => (
118
- < Table . Row key = { tag . sha } >
119
- < Table . Cell className = "max-w-[124px] truncate !py-[13px] text-foreground-1" > { tag . name } </ Table . Cell >
120
- < Table . Cell className = "max-w-[330px] !py-[13px] text-foreground-3" >
121
- < div className = "line-clamp-3 break-all" > { tag . message } </ div >
118
+ < Table . Row key = { tag . sha } className = "min-h-[48px]" >
119
+ < Table . Cell className = "text-foreground-1 w-[11%] truncate !pb-3 !pt-4" >
120
+ < div className = "h-4 overflow-hidden truncate" > { tag . name } </ div >
122
121
</ Table . Cell >
123
- < Table . Cell className = "!py-2.5 text-foreground-3" >
122
+ < Table . Cell className = "text-foreground-3 w-[35%] !py-4" >
123
+ < div className = "line-clamp-3 overflow-hidden break-all leading-4" > { tag . message } </ div >
124
+ </ Table . Cell >
125
+ < Table . Cell className = "text-foreground-3 w-[16%] min-w-[128px] !py-2.5" >
124
126
< div className = "flex" >
125
- < CommitCopyActions sha = { tag . sha } toCommitDetails = { toCommitDetails } rootClassName = "h-7" />
127
+ < CommitCopyActions sha = { tag . sha } toCommitDetails = { toCommitDetails } className = "h-7" />
126
128
</ div >
127
129
</ Table . Cell >
128
- < Table . Cell className = "!py-[13px] text-foreground-3 " >
130
+ < Table . Cell className = "text-foreground-3 w-[17%] !pb-3 !pt-4 " >
129
131
< div className = "flex items-center gap-2" >
130
132
< Avatar . Root size = "4.5" className = "rounded-full text-white" >
131
133
< Avatar . Fallback > { getInitials ( tag . tagger ?. identity . name || '' ) } </ Avatar . Fallback >
132
134
</ Avatar . Root >
133
135
< span > { tag . tagger ?. identity . name } </ span >
134
136
</ div >
135
137
</ Table . Cell >
136
- < Table . Cell className = "!py-[13px] text-foreground-3" > { getCreationDate ( tag ) } </ Table . Cell >
138
+ < Table . Cell className = "text-foreground-3 w-[16%] !pb-3 !pt-4" >
139
+ < div > { getCreationDate ( tag ) } </ div >
140
+ </ Table . Cell >
137
141
138
- < Table . Cell className = "w-[54px ] !py -2.5 text-right" >
142
+ < Table . Cell className = "w-[5% ] !pb-1.5 !pt -2.5 text-right" >
139
143
< MoreActionsTooltip
140
144
isInTable
141
145
actions = { getTableActions ( tag ) . map ( action => ( {
0 commit comments