메뉴바가 top에 있는 경우 badgeOptions

메뉴바가 상단에 있는경우 badgeOptions 적용이 안되나요?

- name: CS 관리
    type: nav
    placement: top
    menus:
      - path: rental/laundry/dashboard
        name: 세탁 CS 접수 (NEW)
        group: rental
        badgeOptions:
          enabled: true
          type: query
          resource: mysql.cleanops
          sql: >
            select count(*)
            from rental_laundry_customer_support_request
            where 
              request_status = 'PENDING'
              and (case when requester_code = '열한시' then 1=1 else requester_code = :pcode end )
            ;
          postfix: 건
          color: yellow
          params:
            - key: pcode
              valueFromUserProperty: PARTNER_CODE
1개의 좋아요

안녕하세요. 네 badgeOptions는 좌측 메뉴에 적용됩니다. 감사합니다.