diff options
author | Chocobozzz <me@florianbigard.com> | 2023-05-24 15:27:15 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2023-05-24 15:27:15 +0200 |
commit | d0fbc9fd0a29c37f3ff9b99030351e90b276fe7d (patch) | |
tree | fa29fcfd704cbc56c7bc3e3e1c15d84ea0f4dc61 /client/src/app/shared/shared-actor-image | |
parent | 25ea1d85e155382367d11036617848fe69a1e6a4 (diff) | |
download | PeerTube-d0fbc9fd0a29c37f3ff9b99030351e90b276fe7d.tar.gz PeerTube-d0fbc9fd0a29c37f3ff9b99030351e90b276fe7d.tar.zst PeerTube-d0fbc9fd0a29c37f3ff9b99030351e90b276fe7d.zip |
Fix lint
Diffstat (limited to 'client/src/app/shared/shared-actor-image')
-rw-r--r-- | client/src/app/shared/shared-actor-image/actor-avatar.component.ts | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/client/src/app/shared/shared-actor-image/actor-avatar.component.ts b/client/src/app/shared/shared-actor-image/actor-avatar.component.ts index 8e6ad4015..f1c1aa03f 100644 --- a/client/src/app/shared/shared-actor-image/actor-avatar.component.ts +++ b/client/src/app/shared/shared-actor-image/actor-avatar.component.ts | |||
@@ -145,13 +145,13 @@ export class ActorAvatarComponent implements OnInit, OnChanges { | |||
145 | // Keep consistency with CSS | 145 | // Keep consistency with CSS |
146 | const themes = { | 146 | const themes = { |
147 | '0123456789abc': 'blue', | 147 | '0123456789abc': 'blue', |
148 | def: 'green', | 148 | 'def': 'green', |
149 | ghi: 'purple', | 149 | 'ghi': 'purple', |
150 | jkl: 'gray', | 150 | 'jkl': 'gray', |
151 | mno: 'yellow', | 151 | 'mno': 'yellow', |
152 | pqr: 'orange', | 152 | 'pqr': 'orange', |
153 | stvu: 'red', | 153 | 'stvu': 'red', |
154 | wxyz: 'dark-blue' | 154 | 'wxyz': 'dark-blue' |
155 | } | 155 | } |
156 | 156 | ||
157 | const theme = Object.keys(themes) | 157 | const theme = Object.keys(themes) |