Modals Migration
5 min
in the past, experience allowed displaying an entire view inside a popup with the popup action however, such modals will be deprecated and will not be supported in the future the recommended alternative is to use a normal navigation action in this documentation, we will show how to migrate from modals to normal navigation using the issue details view as an example current configuration popup action { "path" "issuedetails", "type" "popup", "params" { "content" "$context content id" } } new configuration navigation action { "path" "issuedetails", "type" "navigate", "params" { "content" "$context content id" } } app bar configuration when migrating, you'll usually find that the original issue details view doesn’t have an app bar configured configure an existing one to the view, or create a new one for that view add the app bar to the issue details view { "name" "issue details", // name of your issue details view "path" "issuedetails", // path of your issue details view "appbar" "back" / the rest of the view / }