Skip to content

Commit a95edd0

Browse files
committed
[no ci] fix more anchors
1 parent 7b7d989 commit a95edd0

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

docs_headless/src/content/docs/useLockOnCall.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ const PostEdit = () => (
6262
);
6363
```
6464

65-
**Note**: If users close their tab/browser when on a page with a locked record, `useLockOnCall` will block the navigation and show a notification until the record is unlocked. Hence it's a good practice to give them a way to unlock the record manually, e.g. by using the `doUnlock` callback returned by the [`useLockCallbacks`](#uselockcallbacks) hook or the [`<LockStatusBase>`](#lockstatusbase) component.
65+
**Note**: If users close their tab/browser when on a page with a locked record, `useLockOnCall` will block the navigation and show a notification until the record is unlocked. Hence it's a good practice to give them a way to unlock the record manually, e.g. by using the `doUnlock` callback returned by the [`useLockCallbacks`](./useLockCallbacks.md) hook or the [`<LockStatusBase>`](./LockStatusBase.md) component.
6666

6767
## Parameters
6868

docs_headless/src/content/docs/useLockOnMount.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ const PostEdit = () => (
5858
);
5959
```
6060

61-
**Note**: If users close their tab/browser when on a page with a locked record, `useLockOnMount` will block the navigation and show a notification until the record is unlocked. Hence it's a good practice to give them a way to unlock the record manually, e.g. by using the `doUnlock` callback returned by the hook or the [`<LockStatusBase>`](#lockstatusbase) component.
61+
**Note**: If users close their tab/browser when on a page with a locked record, `useLockOnMount` will block the navigation and show a notification until the record is unlocked. Hence it's a good practice to give them a way to unlock the record manually, e.g. by using the `doUnlock` callback returned by the hook or the [`<LockStatusBase>`](./LockStatusBase.md) component.
6262

6363
## Parameters
6464

docs_headless/src/content/docs/usePublish.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Some hooks and components in this package are specialized to handle "CRUD" event
6868
}
6969
```
7070

71-
See the [CRUD events](#crud-events) section for more details.
71+
See the [CRUD events](https://react-admin-ee.marmelab.com/documentation/ra-realtime#crud-events) section for more details.
7272

7373
## Return Value
7474

docs_headless/src/content/docs/useSubscribeToRecord.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ useSubscribeToRecord(
9898
);
9999
```
100100

101-
**Tip**: If your reason to subscribe to events on a record is to keep the record up to date, you should use [the `useGetOneLive` hook](#usegetonelive) instead.
101+
**Tip**: If your reason to subscribe to events on a record is to keep the record up to date, you should use [the `useGetOneLive` hook](./useGetOneLive.md) instead.
102102

103103
## Parameters
104104

@@ -186,7 +186,7 @@ The `options` object can contain the following properties:
186186
- `once`: Whether to unsubscribe after the first event. Defaults to `false`.
187187
- `unsubscribeOnUnmount`: Whether to unsubscribe on unmount. Defaults to `true`.
188188

189-
See [`useSubscribe`](#usesubscribe) for more details.
189+
See [`useSubscribe`](./useSubscribe.md) for more details.
190190

191191
## `recordId`
192192

0 commit comments

Comments
 (0)