Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | 3x | <app-sidebar-action
[order]="10"
icon="toc"
label="Содержание"
priority="secondary"
(activated)="openTableOfContents()"
/>
@if (editUrl(); as url) {
<app-sidebar-action
[order]="30"
icon="edit"
label="Редактировать"
priority="primary"
[link]="url"
/>
}
@if (articleId(); as id) {
@if (topics(); as t) {
<app-topics-sidebar-action
[articleId]="id"
[topics]="t"
(topicsChanged)="topicsChanged.emit($event)"
/>
}
}
@if (version(); as v) {
<app-moderation-sidebar-action
[version]="v"
[priority]="moderationPriority()"
(moderated)="moderated.emit($event)"
/>
}
|