プラグインのアウトレットでユーザーフィールドが機能しない

ユーザーフィールド「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}}

考えられる問題は何でしょうか?

「いいね!」 1

このテンプレートだけでは、情報が不足していると思います。this.fieldValue はどのように定義されていますか?

サイト設定の Public user custom fieldsuser_field_5 を入力すると…このプラグインのアウトレットからアクセスできるようになります。

テンプレート内では: {{@user.custom_fields.user_field_5}}
またはJS内では: this.args.user?.custom_fields?.user_field_5

「いいね!」 1