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
Copy file name to clipboardexpand all lines: README.md
+7-5
Original file line number
Diff line number
Diff line change
@@ -248,7 +248,7 @@ $: if ($flash) {
248
248
249
249
## Flash message options
250
250
251
-
When calling `getFlash`, you can specify options, which will be set for the current route and the ones below.
251
+
When calling `getFlash`, you can specify options, which will be inherited for the current route and the ones below.
252
252
253
253
```ts
254
254
const flash =getFlash(page, {
@@ -272,15 +272,15 @@ initFlash(page, {
272
272
273
273
### clearOnNavigate
274
274
275
-
If `true` (the default), the flash message will be removed when navigating to a different url.
275
+
If `true` (the default), the flash message will be removed when navigating to a different route.
276
276
277
277
### clearAfterMs
278
278
279
279
Can be set to a number of milliseconds before the flash message is automatically set to `undefined`.
280
280
281
281
### clearArray
282
282
283
-
If you specify `App.PageData['flash']` as an array, the library will concatenate messages into the array instead of replacing them. But if you always want to clear the previous messages for arrays, set the `clearArray` option to `true`.
283
+
If you specify `App.PageData['flash']` as an array, the library will concatenate messages into the array instead of replacing them. But if you always want to clear the previous messages for arrays, set the `clearArray` option to `true`. If your flash message isn't an array, this option will have no effect.
0 commit comments