Skip to content

Commit

Permalink
fixed issue where plugin task responses were not being displayed (#198)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cx01N authored May 5, 2024
1 parent c1ee99a commit 7981b50
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Fixed
- Fixed issue where plugin task responses were not being displayed

## [2.8.0] - 2024-04-08

### Added
Expand Down
4 changes: 3 additions & 1 deletion src/components/plugins/PluginTasksTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,9 @@
v-if="expandedTasks[item.uniqueId].htmlOutput"
v-html="expandedTasks[item.uniqueId].htmlOutput"
/>
<div v-else>addBlankLines(item.output)</div>
<div v-else>
{{ addBlankLines(item.output) }}
</div>
</div>
</div>
</td>
Expand Down

0 comments on commit 7981b50

Please sign in to comment.