Uploaded image for project: 'Common Controller SDK'
  1. Common Controller SDK
  2. CCSDK-3790

SDNR GUI is unable to display values of fields with enum type from drop down

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Unresolved
    • Icon: Medium Medium
    • None
    • Jakarta Release
    • apps - sdnr
    • None

      Step to reproduce:-

      Issue can be reproduce with O-RAN-SC RU Simulator (Version:  http://nexus3.o-ran-sc.org:10002/o-ran-sc/nts-ng-o-ran-ru-fh:1.3.3)

      Under nts-network-function>simulation>network-function>mount-point-addressing-method

      GUI Error Screenshot attached.

      Finding:-

      Lowercase conversion in drop-down UI element failed to load the data

      Solution:-

      Removing the conversion to lower case character in /wt/odlux/apps/configurationApp/src/components/uiElementSelection.tsx

      • Replacing
        • const value = String(props.inputValue).toLowerCase();
          if (element.mandatory && !!value) { ** with const value = String(props.inputValue); if (element.mandatory && Boolean(!value)) { * And ** value= {value.toString().toLowerCase()}

           

        • with value={value.toString()}

       

            djtimoney Dan Timoney
            projitaarna projitaarna
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved: