Skip to content

Commit

Permalink
Merge pull request galaxyproject#16985 from dannon/empty-page-render-fix
Browse files Browse the repository at this point in the history
Fix rendering of an empty page
  • Loading branch information
mvdbeek authored Nov 8, 2023
2 parents 2f56125 + 6ca550c commit a57b08a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/src/components/Markdown/Markdown.vue
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ export default {
initConfig() {
if (Object.keys(this.markdownConfig).length) {
const config = this.markdownConfig;
const markdown = config.content || config.markdown;
const markdown = config.content || config.markdown || "";
this.markdownErrors = config.errors || [];
this.markdownObjects = this.splitMarkdown(markdown);
this.datasets = config.history_datasets || {};
Expand Down

0 comments on commit a57b08a

Please sign in to comment.