diff --git a/public/react/src/modules/courses/poll/PollListItem.js b/public/react/src/modules/courses/poll/PollListItem.js
index 16770ce43..8e6198eae 100644
--- a/public/react/src/modules/courses/poll/PollListItem.js
+++ b/public/react/src/modules/courses/poll/PollListItem.js
@@ -21,6 +21,7 @@ class PollListItem extends Component{
const IsAdmin =this.props.isAdmin();
const isStudent = this.props.isStudent();
+ const isNotMember = this.props.isNotMember();
let t= item.end_time ? moment(item.end_time) - moment() : 0;
return(
@@ -42,7 +43,7 @@ class PollListItem extends Component{
{item.polls_name}
}
{
- item.lock_status === 0 ? :""
+ item.lock_status === 0 ? :""
}
{