אני מנסה להוסיף שדה משתמש זה: user-fields/5 בשקע זה: above-user-summary-stats. אבל זה לא נטען, הנה ה-hbs שאני מנסה להשתמש בו:
{{!-- הצג וערוך שדה משתמש מותאם אישית (למשל, "הערת פרופיל") עבור user_field_5 --}}
{{#if this.fieldValue}}
<div>
<strong>הערת פרופיל:</strong> {{this.fieldValue}}
</div>
{{else}}
{{#if this.canEdit}}
<div class="profile-note-display empty">
<em>לא הוגדרה הערת פרופיל</em>
</div>
{{/if}}
{{/if}}
{{#if this.canEdit}}
{{#unless this.editing}}
<button class="btn btn-primary btn-small" {{on "click" this.startEdit}}>
{{#if this.fieldValue}}ערוך{{else}}הוסף{{/if}} הערת פרופיל
</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">שמור</button>
<button type="button" class="btn btn-conditional btn-small" {{on "click" this.cancelEdit}}>בטל</button>
</form>
{{/if}}
מה יכולה להיות הבעיה האפשרית?