I’m trying to add this user field: user-fields/5 in this outlet: above-user-summary-stats. But it does not load, here is the hbs I’m trying to use:
{{!-- Display and edit a custom user field (e.g., "profile note") for user_field_5 --}}
{{#if this.fieldValue}}
<div class="profile-note-display">
<strong>Profile Note:</strong> {{this.fieldValue}}
</div>
{{else}}
{{#if this.canEdit}}
<div class="profile-note-display empty">
<em>No profile note set</em>
</div>
{{/if}}
{{/if}}
{{#if this.canEdit}}
{{#unless this.editing}}
<button class="btn btn-primary btn-small" {{on "click" this.startEdit}}>
{{#if this.fieldValue}}Edit{{else}}Add{{/if}} Profile Note
</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">Save</button>
<button type="button" class="btn btn-conditional btn-small" {{on "click" this.cancelEdit}}>Cancel</button>
</form>
{{/if}}
What can be the possible issue?