|
|
|
@ -159,7 +159,7 @@ class CodeEvaluateView extends Component {
|
|
|
|
|
let headIconClass = '';
|
|
|
|
|
let _headLockIconClass = '';
|
|
|
|
|
|
|
|
|
|
if (item.is_public === 0) {
|
|
|
|
|
if (item.is_public == 0) {
|
|
|
|
|
if (game.test_sets_view === true || power === 1){
|
|
|
|
|
_headLockIconClass = 'fas fa-unlock-alt'
|
|
|
|
|
} else {
|
|
|
|
@ -175,7 +175,7 @@ class CodeEvaluateView extends Component {
|
|
|
|
|
|
|
|
|
|
testSetsComponentArray.push(
|
|
|
|
|
<div className="-task-ces-top clearfix" onClick={ this.onTestSetHeaderClick.bind(this, index) }
|
|
|
|
|
style={{cursor:'pointer'}} key={index+'-0'}>
|
|
|
|
|
style={{cursor:'pointer', 'margin-top':index == 0 ? '4px' : ''}} key={index+'-0'}>
|
|
|
|
|
<p className="clearfix">
|
|
|
|
|
<i className={`fa ${ 'fa-caret-right'} mr8 font-16`}
|
|
|
|
|
style={isExpanded ? {transform: 'rotate(90deg)'} : {}}></i>
|
|
|
|
|