Skip to content

Commit

Permalink
Address #114
Browse files Browse the repository at this point in the history
  • Loading branch information
mewim committed Mar 20, 2024
1 parent 4553f03 commit f1ddbfd
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions src/components/ShellView/ResultError.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@
<i class="fa-solid fa-circle-exclamation" />
The evaluation of this cell failed with the following error:
<br>
<b>
{{ errorMessage }}
</b>
<pre>{{ errorMessage }}</pre>
</div>
</div>

Expand All @@ -25,7 +23,9 @@
>
<div>
<i class="fa-solid fa-circle-info" />
{{ errorMessage }}
The evaluation of this cell succeeded with the following message:
<br>
<pre>{{ errorMessage }}</pre>
</div>
</div>
</div>
Expand Down Expand Up @@ -64,6 +64,10 @@ export default {
border-radius: 0;
border: none;
margin: 0;
pre {
margin-bottom: 0;
}
}
}
</style>

0 comments on commit f1ddbfd

Please sign in to comment.