[WIKI-399] fix: add favorite action to page header #7144
This commit is contained in:
parent
151fc8389e
commit
323920a358
1 changed files with 2 additions and 0 deletions
|
|
@ -13,6 +13,7 @@ import { TPageInstance } from "@/store/pages/base-page";
|
||||||
// local imports
|
// local imports
|
||||||
import { PageArchivedBadge } from "./archived-badge";
|
import { PageArchivedBadge } from "./archived-badge";
|
||||||
import { PageCopyLinkControl } from "./copy-link-control";
|
import { PageCopyLinkControl } from "./copy-link-control";
|
||||||
|
import { PageFavoriteControl } from "./favorite-control";
|
||||||
import { PageOfflineBadge } from "./offline-badge";
|
import { PageOfflineBadge } from "./offline-badge";
|
||||||
|
|
||||||
type Props = {
|
type Props = {
|
||||||
|
|
@ -31,6 +32,7 @@ export const PageHeaderActions: React.FC<Props> = observer((props) => {
|
||||||
<PageMoveControl page={page} />
|
<PageMoveControl page={page} />
|
||||||
<PageInfoPopover page={page} />
|
<PageInfoPopover page={page} />
|
||||||
<PageCopyLinkControl page={page} />
|
<PageCopyLinkControl page={page} />
|
||||||
|
<PageFavoriteControl page={page} />
|
||||||
<PageOptionsDropdown page={page} storeType={storeType} />
|
<PageOptionsDropdown page={page} storeType={storeType} />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue