Skip to content

Commit

Permalink
fix(plugins/plugin-client-common): numeric responses may not be displ…
Browse files Browse the repository at this point in the history
…ayed

Fixes #6982
  • Loading branch information
starpit committed Feb 8, 2021
1 parent a60dccd commit 8b54aca
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,7 @@ export default class Output extends React.PureComponent<Props, State> {
isHTML(response) ||
isMarkdownResponse(response) ||
(typeof response === 'string' && response.length > 0) ||
typeof response === 'number' ||
isTable(response) ||
isMixedResponse(response) ||
(isXtermResponse(response) && response.rows && response.rows.length !== 0) ||
Expand Down

0 comments on commit 8b54aca

Please sign in to comment.