You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, it appears that Link components do not support custom url schemes/protocols (e.g. the myapp:// in myapp://some/parameters) shown below:
This doesn't work...
fromfastuiimportcomponentsascc.Link(
components=[c.Text(text='Open My App')],
on_click=GoToEvent(url='myapp://some/parameters'),
)
I would expect this to result in the browser navigating to myapp://additional/data but it navigates to myfastuisite.com/somepage/myproto://additional/data
It's being interpreted as a relative path instead of a complete uri.
See here for info about uri schems / custom uri protocols:
Right now, it appears that
Link
components do not support custom url schemes/protocols (e.g. themyapp://
inmyapp://some/parameters
) shown below:This doesn't work...
I would expect this to result in the browser navigating to
myapp://additional/data
but it navigates tomyfastuisite.com/somepage/myproto://additional/data
It's being interpreted as a relative path instead of a complete uri.
See here for info about uri schems / custom uri protocols:
The text was updated successfully, but these errors were encountered: