MiniDAPP
MiniDAPP copied to clipboard
Block v1.0.19 clicking on a block doesn't take you to the details page
On the main Block minidapp page clicking a table row doesn't take you to the details page like clicking a row in the search results does.
Examining the js console I can see warnings like the below when on index.html but not on search.html:
OptionsList.js:20 Invalid table constructor option: rowClick
I looked for differences between index.html and search.html and I suspect it has to do with the imported version of the tabulator lib:
https://unpkg.com/tabulator-tables/dist/js/tabulator.min.js
in index.html
https://github.com/minima-global/MiniDAPP/blob/master/store/block/block/index.html#L14
vs
https://unpkg.com/[email protected]/dist/js/tabulator.min.js
in search.html where it does work
https://github.com/minima-global/MiniDAPP/blob/master/store/block/block/search.html#L15