Browse Source

fix(vben5): fix job result wrap

pull/1176/head
colin 12 months ago
parent
commit
57f3bfc3b4
  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>
</DescriptionsItem>
<DescriptionsItem :label="$t('TaskManagement.DisplayName:Result')">
<span>{{ jobInfo.result }}</span>
<h3 style="word-wrap: break-word; white-space: pre-line">
{{ jobInfo.result }}
</h3>
</DescriptionsItem>
</Descriptions>
</TabPane>

Loading…
Cancel
Save