Browse Source

Merge pull request #1176 from colinin/vben5-fix-wrap

fix(vben5): fix job result wrap
pull/1211/head
yx lin 12 months ago
committed by GitHub
parent
commit
9f082e9cd6
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      apps/vben5/packages/@abp/tasks/src/components/job-infos/JobInfoDetailDrawer.vue

4
apps/vben5/packages/@abp/tasks/src/components/job-infos/JobInfoDetailDrawer.vue

@ -239,7 +239,9 @@ async function onDeleteLog(jobLog: BackgroundJobLogDto) {
<span>{{ jobInfo.maxTryCount }}</span> <span>{{ jobInfo.maxTryCount }}</span>
</DescriptionsItem> </DescriptionsItem>
<DescriptionsItem :label="$t('TaskManagement.DisplayName:Result')"> <DescriptionsItem :label="$t('TaskManagement.DisplayName:Result')">
<span>{{ jobInfo.result }}</span> <h3 style="word-wrap: break-word; white-space: pre-line">
{{ jobInfo.result }}
</h3>
</DescriptionsItem> </DescriptionsItem>
</Descriptions> </Descriptions>
</TabPane> </TabPane>

Loading…
Cancel
Save