I’m trying to update the Hello World example, to add an image and button. The new elements are being displayed in the side panel but the image isn’t rendering and the button doesn’t open the link in a new window.
I have included openUrl in the app’s features and whitelisted the domain of the url that I’m linking to in the button. Where am I going wrong here?
extends layout
block content
img(src='/public/img/example-logo-butterfly_only.png', width='200')
h1=title
if isZoom
p Welcome to Example
a(href='https://www.google.com')
button Example
else
p You're viewing your Zoom App through the browser.
a(href=`/install`) Click Here
| to install your app in Zoom.
append scripts
if isZoom
script(type="module" src='/js/bundle.mjs')
script(nomodule src='/js/bundle.js')
@donte.zoom could you please help me with this?