Skip to content

Commit 64f4d2f

Browse files
committed
chore
1 parent de4a968 commit 64f4d2f

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/features/dashboard/build/logs.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ function LogsContent({
135135
}, [isFetching, isRefetchingFromFilterChange, onFetchComplete])
136136

137137
const hasLogs = logs.length > 0
138-
const showLoader = isRefetchingFromFilterChange && !hasLogs
138+
const showLoader = (isFetching || isRefetchingFromFilterChange) && !hasLogs
139139
const showEmpty = !isFetching && !hasLogs && !isRefetchingFromFilterChange
140140
const showRefetchOverlay = isRefetchingFromFilterChange && hasLogs
141141

src/features/dashboard/templates/builds/table-cells.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,8 @@ export function Reason({
202202
if (!statusMessage) return null
203203

204204
return (
205-
<span className="prose-table text-fg-tertiary truncate">{statusMessage}</span>
205+
<span className="block truncate max-w-0 min-w-full text-left text-fg-tertiary">
206+
{statusMessage}
207+
</span>
206208
)
207209
}

0 commit comments

Comments
 (0)