change(ui) - removed active button from the session listing item
This commit is contained in:
parent
42a55de211
commit
c8716c778f
1 changed files with 1 additions and 7 deletions
|
|
@ -52,7 +52,7 @@ interface Props {
|
|||
hasUserFilter?: boolean;
|
||||
disableUser?: boolean;
|
||||
metaList?: Array<any>;
|
||||
showActive?: boolean;
|
||||
// showActive?: boolean;
|
||||
lastPlayedSessionId?: string;
|
||||
live?: boolean;
|
||||
onClick?: any
|
||||
|
|
@ -68,7 +68,6 @@ function SessionItem(props: RouteComponentProps & Props) {
|
|||
hasUserFilter = false,
|
||||
disableUser = false,
|
||||
metaList = [],
|
||||
showActive = false,
|
||||
lastPlayedSessionId,
|
||||
onClick = null,
|
||||
} = props;
|
||||
|
|
@ -162,11 +161,6 @@ function SessionItem(props: RouteComponentProps & Props) {
|
|||
</div>
|
||||
|
||||
<div className="flex items-center">
|
||||
{ isAssist && showActive && (
|
||||
<Label success className={cn("bg-green color-white text-right mr-4", { 'opacity-0' : !active})}>
|
||||
<span className="color-white">ACTIVE</span>
|
||||
</Label>
|
||||
)}
|
||||
<div className={ stl.playLink } id="play-button" data-viewed={ viewed }>
|
||||
{ isSessions && (
|
||||
<div className="mr-4 flex-shrink-0 w-24">
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue