aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-main/buttons
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2022-10-25 14:42:18 +0200
committerChocobozzz <me@florianbigard.com>2022-10-25 14:42:18 +0200
commit34ba86a8b481e0071c5253fcd562911a48688352 (patch)
tree4310323b7e627985f5dad482a1c2ff9a973ef9dd /client/src/app/shared/shared-main/buttons
parentaa887096f9a305568dc3a846d0c9cdf7e45f1c67 (diff)
downloadPeerTube-34ba86a8b481e0071c5253fcd562911a48688352.tar.gz
PeerTube-34ba86a8b481e0071c5253fcd562911a48688352.tar.zst
PeerTube-34ba86a8b481e0071c5253fcd562911a48688352.zip
Use onpush strategy for dropdown
Diffstat (limited to 'client/src/app/shared/shared-main/buttons')
-rw-r--r--client/src/app/shared/shared-main/buttons/action-dropdown.component.ts5
-rw-r--r--client/src/app/shared/shared-main/buttons/button.component.ts5
2 files changed, 6 insertions, 4 deletions
diff --git a/client/src/app/shared/shared-main/buttons/action-dropdown.component.ts b/client/src/app/shared/shared-main/buttons/action-dropdown.component.ts
index e6164fced..e39fbd66d 100644
--- a/client/src/app/shared/shared-main/buttons/action-dropdown.component.ts
+++ b/client/src/app/shared/shared-main/buttons/action-dropdown.component.ts
@@ -1,4 +1,4 @@
1import { Component, Input } from '@angular/core' 1import { ChangeDetectionStrategy, Component, Input } from '@angular/core'
2import { Params } from '@angular/router' 2import { Params } from '@angular/router'
3import { GlobalIconName } from '@app/shared/shared-icons' 3import { GlobalIconName } from '@app/shared/shared-icons'
4 4
@@ -25,7 +25,8 @@ export type DropdownDirection = 'horizontal' | 'vertical'
25@Component({ 25@Component({
26 selector: 'my-action-dropdown', 26 selector: 'my-action-dropdown',
27 styleUrls: [ './action-dropdown.component.scss' ], 27 styleUrls: [ './action-dropdown.component.scss' ],
28 templateUrl: './action-dropdown.component.html' 28 templateUrl: './action-dropdown.component.html',
29 changeDetection: ChangeDetectionStrategy.OnPush
29}) 30})
30 31
31export class ActionDropdownComponent<T> { 32export class ActionDropdownComponent<T> {
diff --git a/client/src/app/shared/shared-main/buttons/button.component.ts b/client/src/app/shared/shared-main/buttons/button.component.ts
index 10d67831f..1761938ee 100644
--- a/client/src/app/shared/shared-main/buttons/button.component.ts
+++ b/client/src/app/shared/shared-main/buttons/button.component.ts
@@ -1,10 +1,11 @@
1import { Component, Input, OnChanges } from '@angular/core' 1import { ChangeDetectionStrategy, Component, Input, OnChanges } from '@angular/core'
2import { GlobalIconName } from '@app/shared/shared-icons' 2import { GlobalIconName } from '@app/shared/shared-icons'
3 3
4@Component({ 4@Component({
5 selector: 'my-button', 5 selector: 'my-button',
6 styleUrls: [ './button.component.scss' ], 6 styleUrls: [ './button.component.scss' ],
7 templateUrl: './button.component.html' 7 templateUrl: './button.component.html',
8 changeDetection: ChangeDetectionStrategy.OnPush
8}) 9})
9 10
10export class ButtonComponent implements OnChanges { 11export class ButtonComponent implements OnChanges {