|
|
|
@ -245,9 +245,9 @@ class Video extends Component {
|
|
|
|
|
onEditVideo={this.onEditVideo}
|
|
|
|
|
onMaskClick={this.onMaskClick}
|
|
|
|
|
getCopyText={this.getCopyText}
|
|
|
|
|
operation={operation}
|
|
|
|
|
operation={operation || item.user_id === user_id}
|
|
|
|
|
deleteVideo={(admin || item.user_id === user_id) ? this.deleteVideo : undefined}
|
|
|
|
|
moveVideo={videoData && videoData.has_category && operation ?()=>this.moveVideo(item.id):undefined}
|
|
|
|
|
moveVideo={videoData && videoData.has_category && (operation || item.user_id === user_id) ? ()=>this.moveVideo(item.id):undefined}
|
|
|
|
|
>
|
|
|
|
|
</VideoInReviewItem>
|
|
|
|
|
)
|
|
|
|
|