Skip to content

Commit

Permalink
Eye
Browse files Browse the repository at this point in the history
  • Loading branch information
Serov-RA committed Nov 16, 2019
1 parent c2ec4d7 commit 400b6e4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions modules/manage/views/market/categories/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
$title = ($model->status == $model::STATUS_INACTIVE ? Yii::t('app', 'Hidden') : Yii::t('app', 'Deleted')).
'. '.Yii::t('app', 'Show');

return Html::a(new Icon('eye', ['class' => 'fa-lg']),
return Html::a(new Icon('eye-slash', ['class' => 'fa-lg']),
['show', 'id' => $model->id],
['title' => $title,
'aria-label' => $title,
Expand All @@ -111,7 +111,7 @@
$title = ($model->status == $model::STATUS_ACTIVE ? Yii::t('app', 'Published') : Yii::t('app', 'Deleted')).
'. '.Yii::t('app', 'Hide');

return Html::a(new Icon('eye-slash', ['class' => 'fa-lg']),
return Html::a(new Icon('eye', ['class' => 'fa-lg']),
['hide', 'id' => $model->id],
['title' => $title,
'aria-label' => $title,
Expand Down
4 changes: 2 additions & 2 deletions modules/manage/views/market/products/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
$title = ($model->status == $model::STATUS_INACTIVE ? Yii::t('app', 'Hidden') : Yii::t('app', 'Deleted')).
'. '.Yii::t('app', 'Show');

return Html::a(new Icon('eye', ['class' => 'fa-lg']),
return Html::a(new Icon('eye-slash', ['class' => 'fa-lg']),
['show', 'id' => $model->id],
['title' => $title,
'aria-label' => $title,
Expand All @@ -96,7 +96,7 @@
$title = ($model->status == $model::STATUS_ACTIVE ? Yii::t('app', 'Published') : Yii::t('app', 'Deleted')).
'. '.Yii::t('app', 'Hide');

return Html::a(new Icon('eye-slash', ['class' => 'fa-lg']),
return Html::a(new Icon('eye', ['class' => 'fa-lg']),
['hide', 'id' => $model->id],
['title' => $title,
'aria-label' => $title,
Expand Down

0 comments on commit 400b6e4

Please sign in to comment.