File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed
src/Pages/Shared/EnvironmentOverviewTable Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -214,12 +214,7 @@ export const EnvironmentOverviewTable = ({
214
214
) }
215
215
< div className = "flexbox dc__align-items-center dc__content-space dc__gap-8" >
216
216
< Tooltip content = { name } >
217
- < Link
218
- className = "py-2 dc__truncate dc__no-decor"
219
- to = { redirectLink }
220
- target = "_blank"
221
- rel = "noreferrer"
222
- >
217
+ < Link className = "py-2 dc__truncate dc__no-decor" to = { redirectLink } >
223
218
{ name }
224
219
</ Link >
225
220
</ Tooltip >
@@ -245,7 +240,13 @@ export const EnvironmentOverviewTable = ({
245
240
< CommitChipCell handleClick = { onCommitClick } commits = { commits } />
246
241
{ deployedBy && (
247
242
< >
248
- < Link to = { deployedAtLink } > { processDeployedTime ( deployedAt , true ) } </ Link >
243
+ { deployedAt ? (
244
+ < Link className = "dc__no-decor" to = { deployedAtLink } >
245
+ { processDeployedTime ( deployedAt , true ) }
246
+ </ Link >
247
+ ) : (
248
+ < span />
249
+ ) }
249
250
< div className = "flexbox dc__align-items-center dc__gap-8" >
250
251
< span
251
252
className = "icon-dim-20 mw-20 flex dc__border-radius-50-per dc__uppercase cn-0 fw-4"
You can’t perform that action at this time.
0 commit comments