Skip to content

Commit

Permalink
Fix markdown no content
Browse files Browse the repository at this point in the history
  • Loading branch information
jggoebel committed Mar 13, 2024
1 parent 5518bd5 commit 900aa0e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/app/step/hf-markdown.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,10 @@ ${token}`;
}

ngOnChanges() {
if(!this.content){
return
}

const contentWithReplacedTokens = this.replaceSessionToken(
this.replaceVmInfoTokens(this.content),
);
Expand Down

0 comments on commit 900aa0e

Please sign in to comment.