@@ -30,12 +30,12 @@ |
||
30 | 30 | ['class' => \yii\grid\SerialColumn::class], |
31 | 31 | [ |
32 | 32 | 'attribute' => 'username', |
33 | - 'content' => function (\app\models\Account $model) { |
|
33 | + 'content' => function(\app\models\Account $model) { |
|
34 | 34 | $html = []; |
35 | 35 | $html[] = Html::a($model->displayName, ['account/dashboard', 'id' => $model->id]); |
36 | 36 | $html[] = Html::a('<span class="fa fa-external-link text-sm"></span>', Url::account($model->username), ['target' => '_blank']); |
37 | 37 | |
38 | - if ($model->accounts_monitoring_level){ |
|
38 | + if ($model->accounts_monitoring_level) { |
|
39 | 39 | $html[] = sprintf('<span class="fa fa-magic text-muted pull-right" title="monitoring level: %s"></span>', $model->accounts_monitoring_level); |
40 | 40 | } |
41 | 41 | if ($model->disabled) { |