Update the header actions

ACTION S10: Update header actions

Adapt in File: <feature>.component.ts

The page header can be customized to your needs. See more details in the Page Header Cookbook and Search Header Cookbook.

Example:
const actions: Action[] = [
        ...
        {
          labelKey: 'FEATURE_SEARCH.HEADER_ACTIONS.MY_HEADER_ACTION',
          icon: PrimeIcons.SYNC,
          titleKey: 'FEATURE_SEARCH.HEADER_ACTIONS.MY_HEADER_ACTION',
          show: 'asOverflow',
          actionCallback: () => this.triggerMyHeaderAction(),
        },
      ];
Remove the "ACTION" comment after working on this task