It seems that the trick to make links clickable doesn't work anymore in 0.3.4. The code: ``` for col in links: js_hyperlinks = JsCode( """ function(cell) { return `<a href="${cell.value}" target="_blank">Click me!</a>` } """ ) gb.configure_column(col, cellRenderer=js_hyperlinks) ``` On 0.3.3 - the tab of URLs is populated with 'Click me!' On 0.3.4 - `<a href="link goes here" target="_blank">Click me!</a>`