You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: frontend/nextcp-ui/src/app/mediaserver/display-container/display-container-header/display-container-header.component.ts
+2-3Lines changed: 2 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -70,7 +70,7 @@ export class DisplayContainerHeaderComponent implements OnInit {
70
70
// Kept short on purpose: a digit plus the heart says it without a sentence. ANY
71
71
// has no digit, it is the switched-off state and carries an icon instead. The
72
72
// trailing plus is what tells the reader the entry is a lower bound; 5 has none
73
-
// because there is nothing above it, and 0 is the disliked bucket, not a bound.
73
+
// because there is nothing above it, and 0 is what carries no rating, not a bound.
74
74
readonlyratingOptions: ReadonlyArray<{
75
75
value: RatingFilter;
76
76
digits?: string;
@@ -83,7 +83,7 @@ export class DisplayContainerHeaderComponent implements OnInit {
83
83
{value: '3',digits: '3+',title: '3 and better'},
84
84
{value: '2',digits: '2+',title: '2 and better'},
85
85
{value: '1',digits: '1+',title: '1 and better'},
86
-
{value: '0',digits: '0',title: 'Disliked, 0'},
86
+
{value: '0',digits: '0',title: 'Not rated'},
87
87
];
88
88
89
89
ratingOption=computed(
@@ -721,7 +721,6 @@ export class DisplayContainerHeaderComponent implements OnInit {
721
721
data: {
722
722
trigger: target,
723
723
addToPlaylistOutput: this.addToPlaylistClicked,
724
-
event: event,
725
724
currentContainer: this.currentContainer,
726
725
// The like only shows up here for containers that do not wear it next
0 commit comments