@@ -75,13 +75,13 @@ Route <- function(..., element, key = uuid::UUIDgenerate()) {
7575# ' Link
7676# '
7777# ' The `reloadDocument` can be used to skip client side routing and let the
78- # ' browser handle the transition normally (as if it were an <a href>). In
79- # ' React Router v6 `reloadDocument` if `FALSE`, but given shiny behavior, the
80- # ' `Link()` function makes it `TRUE` by default .
78+ # ' browser handle the transition normally (as if it were an <a href>). Given
79+ # ' shiny behavior, using `reloadDocument = TRUE` allows to render correctly
80+ # ' objects created in the server side .
8181# '
8282# ' @rdname Link
8383# ' @param ... Props to pass to element.
84- # ' @param reloadDocument Boolean. Default TRUE. Let browser handle the transition normally
84+ # ' @param reloadDocument Boolean. Default FALSE.
8585# ' @return A Link component.
8686# ' @export
8787Link <- function (... , reloadDocument = TRUE ) {
@@ -107,13 +107,13 @@ Navigate <- component('Navigate')
107107# ' NavLink
108108# '
109109# ' The `reloadDocument` can be used to skip client side routing and let the
110- # ' browser handle the transition normally (as if it were an <a href>). In
111- # ' React Router v6 `reloadDocument` if `FALSE`, but given shiny behavior, the
112- # ' `NavLink()` function makes it `TRUE` by default .
110+ # ' browser handle the transition normally (as if it were an <a href>). Given
111+ # ' shiny behavior, using `reloadDocument = TRUE` allows to render correctly
112+ # ' objects created in the server side .
113113# '
114114# ' @rdname NavLink
115115# ' @param ... Props to pass to element.
116- # ' @param reloadDocument Boolean. Default TRUE. Let browser handle the transition normally
116+ # ' @param reloadDocument Boolean. Default FALSE.
117117# ' @return A NavLink component.
118118# ' @export
119119NavLink <- function (... , reloadDocument = TRUE ) {
0 commit comments