Issue with setting device configuration in Z-Wave JS

I am using latest version of HA 2022.3.3. with Z-wave JS for connecting to the z-wave devices.
I am trying to set a configuration parameter for an AEOTEC Smart switch 6 to set parameter 81 to value 1 ( turn off led after 5 seconds).
The configuration parameter is pulled as a drop down in the web interface, and it says that it is applied, but nothing happens on the device. When i pull the diagnostic for the device is still shows it with value 0.

I am new to HA , having just moved all my stuff from vera in the last couple of days! Not sure if the solution is in the community, or is it an actual bug?

The diagnostic part:

{
“endpoint”: 0,
“commandClass”: 112,
“commandClassName”: “Configuration”,
“property”: 81,
“propertyName”: “LED Indicator”,
“ccVersion”: 1,
“metadata”: {
“type”: “number”,
“readable”: true,
“writeable”: true,
“label”: “LED Indicator”,
“default”: 0,
“min”: 0,
“max”: 2,
“states”: {
“0”: “On when load is on”,
“1”: “Off after 5 seconds”,
“2”: “Night light mode”
},
“valueSize”: 1,
“format”: 0,
“allowManualEntry”: false,
“isFromConfig”: true
},
“value”: 0
},
{
“endpoint”: 0,

It can sometimes take some time, before those changes reach the device.
Try also directly after you save the changes to push the the button on the device. It should not be needed with a powered z-wave device, but sometimes it helps.
With battery powered devices it even is necessary.

waited some time, but still not updated. I believe the issue is either with the browser or app not handling the drop down selection or maybe the database that it uses has the wrong values. In any case I was able to set the value by creating a simple script in the ui and this resolved the issue. The light behaves properly and the diagnostic dump, shows the value is set.
alias: set parameter
sequence:

  • service: zwave_js.set_config_parameter
    data:
    parameter: ‘81’
    value: ‘1’
    target:
    entity_id: light.master_switch2
    mode: single

I think it is a bug.
Thanks

alias: set parameter
sequence:
  - service: zwave_js.set_config_parameter
    data:
      parameter: '81'
      value: '1'
    target:
      entity_id: light.master_switch2
mode: single