Dynamic Link with route containing variables broken

Bootstrap 4
PHP
MYSQL
Wappler 5.4.1

I have a table created with the generator. I need to create a link to a detail page from the list. I have done this probably the 50 times or more. But it seems to be broken in latest Wappler. Here is my link code.

<td><a href="#" dmx-bind:href="">{{inst_clientname}}</a>

Click on the routes button …

Select the route …

Click on the dynamic picker. … the repeat region is not available to pick the data.

so what’s available then inside the data picker dialog?

Oops forgot to post last screenshot …

So what is this then?

Thats the table, but the two values I need to select are not displayed in the table.

Actually they are there but the code created is wrong …

<a href="#" dmx-bind:href="'/programprofile/21/'+tableRepeat1[0].ea_instance+'/'+tableRepeat1[0].ea_client">{{inst_clientname}}</a>

Tried changing it to:

<a href="#" dmx-bind:href="'/programprofile/21/'+ea_instance+'/'+ea_client">{{inst_clientname}}</a>

But that doesn’t work either.

I was able to get it working by selecting from the repeat table and fixing the code that was generated. The code generated is wrong as in the above post.

But that is still not where we used to pick the binding from. So something is still wrong as in original post.