Tooltip/Popover not evaluate ternary function - Bootstrap 5.3

Wappler Beta 10 | Windows | NodeJS | Beta Channel

Hi, using ternary in a Tooltip.

The tooltip is inside a repeated from a Table (Bootstrap Generator)…
For testing I added a input and then the tooltip that should show the same text, but not, it always evaluate as true:

<input id="text1" name="text1" type="text" class="form-control" dmx-bind:value="disponible==0?'No Listado':'Listado/Visible'">
<i style="font-size:24px" class="fas" dmx-class:fa-eye-slash="disponible==0" dmx-class:fa-eye="disponible==1" dmx-class:text-success="disponible==1" dmx-class:text-black-50="disponible==0" data-bs-trigger="hover" dmx-bs-tooltip="disponible==0?'No Listado':'Listado/Visible'"></i>

The result of both should be:

No Listado
No Listado

The current result:

No Listado
Listado/Visible

This part is not correctly evaluating: dmx-bs-tooltip="disponible==0?'No Listado':'Listado/Visible'"
The tooltip in this case always return "Listado/Visible" and it should be "No Listado".

Thanks,

We’re already aware of the issue and we are working on a fix.

Can you test the following update: dmxBootstrap5Tooltips.zip (468 Bytes)

Works perfect! Thanks

Fixed in Wappler 6 beta 11