@@ -111,32 +111,32 @@ export default function SchemaTableItem({
111
111
} ;
112
112
113
113
return (
114
- < tr className = "text-sm h-10 " >
114
+ < tr className = "text-sm" >
115
115
{ ( ! checkTypes || ! connection || ! schema ) && (
116
116
< >
117
117
{ ! connection && (
118
- < td >
118
+ < td className = "content-start pt-2" >
119
119
< div className = "flex items-start" >
120
120
< Button
121
- className = "px-4 underline cursor-pointer text-sm"
121
+ className = "px-4 underline cursor-pointer text-sm py-0 "
122
122
label = { item . connection_name }
123
123
onClick = { ( ) => goToConnection ( item ) }
124
124
/>
125
125
</ div >
126
126
</ td >
127
127
) }
128
- < td >
128
+ < td className = "content-start pt-2" >
129
129
< Button
130
- className = "px-4 underline cursor-pointer text-sm"
130
+ className = "px-4 underline cursor-pointer text-sm py-0 "
131
131
label = { item . schema }
132
132
onClick = { ( ) => goToSchema ( item ) }
133
133
/>
134
134
</ td >
135
135
</ >
136
136
) }
137
- < td >
137
+ < td className = "content-start pt-2" >
138
138
< Button
139
- className = "px-4 underline cursor-pointer text-sm"
139
+ className = "px-4 underline cursor-pointer text-sm py-0 "
140
140
label = { item . target ?. table_name }
141
141
onClick = { ( ) => goToTable ( item ) }
142
142
/>
@@ -151,12 +151,16 @@ export default function SchemaTableItem({
151
151
/>
152
152
) : null }
153
153
</ td >
154
- < td className = "px-4 text-sm" > { item ?. stage } </ td >
155
- < td className = "px-4 text-sm" > { getLabelsOverview ( item ?. labels ?? [ ] ) } </ td >
154
+ < td className = "px-4 text-sm content-start pt-2" > { item ?. stage } </ td >
155
+ < td className = "px-4 text-sm content-start pt-2" >
156
+ { getLabelsOverview ( item ?. labels ?? [ ] ) }
157
+ </ td >
156
158
{ item ?. data_quality_status ?. dimensions ? (
157
159
< SchemaTableItemDimensions item = { item } dimensionKeys = { dimensionKeys } />
158
160
) : (
159
- < SvgIcon name = "hourglass" className = "w-4 h-4" />
161
+ < td className = "content-start pt-2" >
162
+ < SvgIcon name = "hourglass" className = "w-4 h-4" />
163
+ </ td >
160
164
) }
161
165
</ tr >
162
166
) ;
0 commit comments