Skip to content

Commit

Permalink
Fix type warning in help term wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
guerler committed Dec 17, 2024
1 parent 44dd46c commit 9c28965
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/components/Help/HelpTerm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const { loading, hasHelp, help } = useHelpForTerm(toRef(props, "term"));
<div v-if="loading">
<LoadingSpan message="Loading Galaxy help terms" />
</div>
<div v-else-if="hasHelp">
<div v-else-if="hasHelp && help">
<ConfigurationMarkdown :markdown="help" :admin="true" />
</div>
<div v-else>
Expand Down

0 comments on commit 9c28965

Please sign in to comment.