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
Because you set data-toggle = "tab",
irrespective of whether it is an internal or external URL, external URLs are not loaded because of javascript code interfering.
This fix works and seems to not cause any regressions (AFAIK): data-toggle= if (is.null(href)) "tab",
Could you put this fix in the source code?
Best,
Harmen
The text was updated successfully, but these errors were encountered:
Hi,
I found a small yet annoying bug: I'm using bs4SidebarMenuItem() with href = 'https://www.google.com' (no tabName set) and newTab = T. This doesn't work: the link won't open. I have traced the issue here:
https://github.com/RinteRface/bs4Dash/blob/master/R/dashboardSidebar.R#L407
Because you set
data-toggle
= "tab",
irrespective of whether it is an internal or external URL, external URLs are not loaded because of javascript code interfering.
This fix works and seems to not cause any regressions (AFAIK):
data-toggle
= if (is.null(href)) "tab",
Could you put this fix in the source code?
Best,
Harmen
The text was updated successfully, but these errors were encountered: