-
How can we disable multi-tasking in the sample workload and get the default behavior? Not seeing info in the docs: https://learn.microsoft.com/en-us/fabric/workload-development-kit/multitasking Tried putting Block/Deny/false here: https://github.com/microsoft/Microsoft-Fabric-workload-development-sample/blob/main/Frontend/tools/BaseTab.js#L4 But did not seem to work. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Based on the behavior you want your workload to have, there are several options. Another option is to set maxInstanceCount to 1 in Item1.json. |
Beta Was this translation helpful? Give feedback.
Based on the behavior you want your workload to have, there are several options.
Your best approach would be setting allowMultipleTabs to "notAllow".
This will cause the item editor to be closed once you navigate away from it.
Another option is to set maxInstanceCount to 1 in Item1.json.
This will cause the item editor to remain open as a tab on the left nav bar but will not allow creation of new items (and thus new tabs) until that tab is closed.