Ich versuche, dieses Benutzerfeld: user-fields/5 in diesem Outlet: above-user-summary-stats hinzuzufügen. Aber es wird nicht geladen. Hier ist das HBS, das ich zu verwenden versuche:
{{!-- Zeigt ein benutzerdefiniertes Benutzerfeld an und bearbeitet es (z. B. „Profilhinweis“) für user_field_5 --}}
{{#if this.fieldValue}}
<div>
<strong>Profilhinweis:</strong> {{this.fieldValue}}
</div>
{{else}}
{{#if this.canEdit}}
<div class="profile-note-display empty">
<em>Kein Profilhinweis festgelegt</em>
</div>
{{/if}}
{{/if}}
{{#if this.canEdit}}
{{#unless this.editing}}
<button class="btn btn-primary btn-small" {{on "click" this.startEdit}}>
{{#if this.fieldValue}}Bearbeiten{{else}}Hinzufügen{{/if}} Profilhinweis
</button>
{{/unless}}
{{/if}}
{{#if this.editing}}
<form {{on "submit" this.save}}>
<textarea
rows="4"
style="width:100%;"
value={{this.editValue}}
{{on "input" this.updateEdit}}
autofocus
></textarea>
<br>
<button type="submit" class="btn btn-primary btn-small">Speichern</button>
<button type="button" class="btn btn-conditional btn-small" {{on "click" this.cancelEdit}}>Abbrechen</button>
</form>
{{/if}}
Was könnte das Problem sein?