Change font size of pipeline status message
This commit is contained in:
parent
3007dff153
commit
6c213dd1da
2 changed files with 3 additions and 3 deletions
|
|
@ -1 +1 @@
|
|||
__api_version__ = "0143"
|
||||
__api_version__ = "0145"
|
||||
|
|
|
|||
|
|
@ -166,7 +166,7 @@ export default function PipelineStatusDialog({
|
|||
{/* Latest Message */}
|
||||
<div className="space-y-2">
|
||||
<div className="text-sm font-medium">{t('documentPanel.pipelineStatus.latestMessage')}:</div>
|
||||
<div className="font-mono text-sm rounded-md bg-zinc-800 text-zinc-100 p-3">
|
||||
<div className="font-mono text-xs rounded-md bg-zinc-800 text-zinc-100 p-3">
|
||||
{status?.latest_message || '-'}
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -177,7 +177,7 @@ export default function PipelineStatusDialog({
|
|||
<div
|
||||
ref={historyRef}
|
||||
onScroll={handleScroll}
|
||||
className="font-mono text-sm rounded-md bg-zinc-800 text-zinc-100 p-3 overflow-y-auto min-h-[7.5em] max-h-[40vh]"
|
||||
className="font-mono text-xs rounded-md bg-zinc-800 text-zinc-100 p-3 overflow-y-auto min-h-[7.5em] max-h-[40vh]"
|
||||
>
|
||||
{status?.history_messages?.length ? (
|
||||
status.history_messages.map((msg, idx) => (
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue