aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2019-12-03 18:54:49 +0100
committerChocobozzz <me@florianbigard.com>2019-12-03 18:54:49 +0100
commit64ff48cb8d854f43884cd769d1eec71f6394cd77 (patch)
tree8ff6544cb0f117616d4b98a84f0d8db06a52c0b9 /client/src/app
parent44daca1f4108e72b49281fb232be006c11ffab3a (diff)
downloadPeerTube-64ff48cb8d854f43884cd769d1eec71f6394cd77.tar.gz
PeerTube-64ff48cb8d854f43884cd769d1eec71f6394cd77.tar.zst
PeerTube-64ff48cb8d854f43884cd769d1eec71f6394cd77.zip
Change the support icon
Diffstat (limited to 'client/src/app')
-rw-r--r--client/src/app/core/plugins/plugin.service.ts2
-rw-r--r--client/src/app/shared/images/global-icon.component.ts2
-rw-r--r--client/src/app/videos/+video-watch/video-watch.component.html4
3 files changed, 4 insertions, 4 deletions
diff --git a/client/src/app/core/plugins/plugin.service.ts b/client/src/app/core/plugins/plugin.service.ts
index 3f96ef6de..e24468da5 100644
--- a/client/src/app/core/plugins/plugin.service.ts
+++ b/client/src/app/core/plugins/plugin.service.ts
@@ -12,7 +12,7 @@ import { ClientHook, ClientHookName, clientHookObject } from '@shared/models/plu
12import { PluginClientScope } from '@shared/models/plugins/plugin-client-scope.type' 12import { PluginClientScope } from '@shared/models/plugins/plugin-client-scope.type'
13import { RegisterClientHookOptions } from '@shared/models/plugins/register-client-hook.model' 13import { RegisterClientHookOptions } from '@shared/models/plugins/register-client-hook.model'
14import { HttpClient } from '@angular/common/http' 14import { HttpClient } from '@angular/common/http'
15import { AuthService } from '@app/core' 15import { AuthService } from '@app/core/auth'
16import { RestExtractor } from '@app/shared/rest' 16import { RestExtractor } from '@app/shared/rest'
17import { PluginType } from '@shared/models/plugins/plugin.type' 17import { PluginType } from '@shared/models/plugins/plugin.type'
18import { PublicServerSetting } from '@shared/models/plugins/public-server.setting' 18import { PublicServerSetting } from '@shared/models/plugins/public-server.setting'
diff --git a/client/src/app/shared/images/global-icon.component.ts b/client/src/app/shared/images/global-icon.component.ts
index a56674b58..a13b7d8e0 100644
--- a/client/src/app/shared/images/global-icon.component.ts
+++ b/client/src/app/shared/images/global-icon.component.ts
@@ -26,7 +26,7 @@ const icons = {
26 'validate': require('!!raw-loader?!../../../assets/images/global/validate.svg'), 26 'validate': require('!!raw-loader?!../../../assets/images/global/validate.svg'),
27 'tick': require('!!raw-loader?!../../../assets/images/global/tick.svg'), 27 'tick': require('!!raw-loader?!../../../assets/images/global/tick.svg'),
28 'dislike': require('!!raw-loader?!../../../assets/images/video/dislike.svg'), 28 'dislike': require('!!raw-loader?!../../../assets/images/video/dislike.svg'),
29 'heart': require('!!raw-loader?!../../../assets/images/video/heart.svg'), 29 'support': require('!!raw-loader?!../../../assets/images/video/support.svg'),
30 'like': require('!!raw-loader?!../../../assets/images/video/like.svg'), 30 'like': require('!!raw-loader?!../../../assets/images/video/like.svg'),
31 'more-horizontal': require('!!raw-loader?!../../../assets/images/global/more-horizontal.svg'), 31 'more-horizontal': require('!!raw-loader?!../../../assets/images/global/more-horizontal.svg'),
32 'more-vertical': require('!!raw-loader?!../../../assets/images/global/more-vertical.svg'), 32 'more-vertical': require('!!raw-loader?!../../../assets/images/global/more-vertical.svg'),
diff --git a/client/src/app/videos/+video-watch/video-watch.component.html b/client/src/app/videos/+video-watch/video-watch.component.html
index 5b98a7bd4..647cc3c57 100644
--- a/client/src/app/videos/+video-watch/video-watch.component.html
+++ b/client/src/app/videos/+video-watch/video-watch.component.html
@@ -73,8 +73,8 @@
73 <my-global-icon iconName="dislike"></my-global-icon> 73 <my-global-icon iconName="dislike"></my-global-icon>
74 </div> 74 </div>
75 75
76 <div *ngIf="video.support" (click)="showSupportModal()" class="action-button"> 76 <div *ngIf="video.support" (click)="showSupportModal()" class="action-button action-button-support">
77 <my-global-icon iconName="heart"></my-global-icon> 77 <my-global-icon iconName="support"></my-global-icon>
78 <span class="icon-text" i18n>Support</span> 78 <span class="icon-text" i18n>Support</span>
79 </div> 79 </div>
80 80