Forum Discussion
Unable to Create App from workspace
- 3 months ago
Can you use the devtools(F-12) and review the call stack for where it might be stuck and post the code block.
In Chrome DevTools:
- Open DevTools → Sources
- When the app hangs, click Pause (⏸)
The debugger will break at the exact line currently executing, which is typically inside the infinite loop. [stackoverflow.com]
From there:
- Inspect the call stack
- Look at loop variables
- Step out (Shift+F11) until you find the bad condition
Hi CKGZA,
Can you confirm what permissions you have on the workspace?
Can you share a screenshot of what you are encountering?
A pro license should be enough to create an app as long as you have permissions in the workspace.
Publish an app in Power BI - Power BI | Microsoft Learn
I am an admin on the workspace. I created the workspace. I can select 'Create App' and go through the motions of selecting the content, assigning the audience, and then publishing the app. But that is where it ends. The screen greys out, but nothing happens.
- tayloramy3 months agoSuper User
Hi CKGZA,
Huh, I've never seen that before.
Can you try clearing your cache and cookies, or using a different browser?- bradsy3 months agoMicrosoft Employee
Can you use the devtools(F-12) and review the call stack for where it might be stuck and post the code block.
In Chrome DevTools:
- Open DevTools → Sources
- When the app hangs, click Pause (⏸)
The debugger will break at the exact line currently executing, which is typically inside the infinite loop. [stackoverflow.com]
From there:
- Inspect the call stack
- Look at loop variables
- Step out (Shift+F11) until you find the bad condition
- CKGZA3 months agoRegular Visitor
Thank you! This really helped to identify the issue.