Our Apps are not show up on the board via the panel even if they are installed.
What to do?
Our Apps are not show up on the board via the panel even if they are installed.
What to do?
How many app icons are currently showing up in your toolbar? If you have more than twelve, the remaining ones would be in the apps popout panel.
Are you able to post a Loom video or a few screenshots showing which apps you are referring to?
Kiron
no, that’s not the case. All of our own Apps are not showing up even after re-installation ...
I am having the same issue. I was able to view the app yesterday. Today, I cannot see the app. I tried to reinstall and have no luck.
Or, are these custom apps that were developed for your organization? If so, perhaps the app code source system is down/offline.
What happens if you put the app on an external service, e.g., glitch.com?
Hi
Thanks for bringing this to our attention. We’re actively looking into this and we will follow up here shortly.
Hi
Thanks for bringing this to our attention. We’re actively looking into this and we will follow up here shortly.
Thank You!
Hi
This is still being looked into internally, but it seems it might be related to apps that aren't subscribed to the icon:click
event.
As a workaround in the meantime, if you add icon click to your app, I believe you should see these apps appear in the toolbar as expected:
https://developers.miro.com/docs/add-icon-click-to-your-app
Hey
We have talked previously on Discord, Marcus and I are working on the same application(s).
Thank you for the suggestion, I looked into our app and we have the following in there:
async function init() {
miro.board.ui.on("icon:click", async () => {
await miro.board.ui.openPanel({
url: "app.html",
})
})
getAccessKeys()
}
init()
Could it be solved if the subscription was in the global scope, instead of the function scope?
Hey
This snippet should do the trick—as long as the app is subscribed to this event. I assume this is the case, but you have double checked that the app is loading? Perhaps you can try putting some console.log
inside that init()
function just to be sure
I was having the same issue, for me the problem was that the Browser was blocking the HTTP request to fetch the app. After disabling the Browser automatic security features, the app showed up. I imagine an AdBlock/uBlock extension or similar might also cause issues here.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.