FIX: typo in topic gist for escapedExcerpt (#1003)

This commit is contained in:
Kris 2024-12-05 08:03:08 -05:00 committed by GitHub
parent 625fd06744
commit 50f61925eb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@ export default class AiTopicGist extends Component {
return this.args.topic.get("ai_topic_gist"); return this.args.topic.get("ai_topic_gist");
} }
get escapedExceprt() { get escapedExcerpt() {
return this.args.topic.get("escapedExcerpt"); return this.args.topic.get("escapedExcerpt");
} }
@ -28,10 +28,10 @@ export default class AiTopicGist extends Component {
<div class="excerpt__contents">{{this.gist}}</div> <div class="excerpt__contents">{{this.gist}}</div>
</div> </div>
{{else}} {{else}}
{{#if this.esacpedExceprt}} {{#if this.escapedExcerpt}}
<div class="excerpt"> <div class="excerpt">
<div class="excerpt__contents"> <div class="excerpt__contents">
{{htmlSafe this.escapedExceprt}} {{htmlSafe this.escapedExcerpt}}
</div> </div>
</div> </div>
{{/if}} {{/if}}