Skip to content

Commit

Permalink
correct the if statement
Browse files Browse the repository at this point in the history
  • Loading branch information
marthasharkey committed Nov 28, 2024
1 parent 8d478ba commit 92505a5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ config.setToolbar([
<template>
<div class="WarningsVisualization">
<ul>
<li v-if="props.data.message">There are no warnings.</li>
<li v-if="!props.data.message">There are no warnings.</li>
<li v-else v-text="data.message"></li>
</ul>
</div>
Expand Down

0 comments on commit 92505a5

Please sign in to comment.