Skip to content

Commit

Permalink
Fixed issue #10431: Columns for question list are not distributed well
Browse files Browse the repository at this point in the history
  • Loading branch information
olleharstedt committed Feb 25, 2016
1 parent 6697c46 commit 9bf3229
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions application/views/admin/survey/Question/listquestions.php
Expand Up @@ -61,25 +61,21 @@
'header' => gt('Question ID'),
'name' => 'question_id',
'value'=>'$data->qid',
'htmlOptions' => array('class' => 'col-md-1 hidden-xs'),
),
array(
'header' => gt('Question order'),
'name' => 'question_order',
'value'=>'$data->question_order',
'htmlOptions' => array('class' => 'col-sm-1 hidden-xs'),
),
array(
'header' => gt('Code'),
'name' => 'title',
'value'=>'$data->title',
'htmlOptions' => array('class' => 'col-xs-1'),
),
array(
'header' => gt('Question'),
'name' => 'question',
'value'=>'strip_tags($data->question)',
'htmlOptions' => array('class' => 'col-xs-1 col-sm-3 '),
),
array(
'header' => gt('Question type'),
Expand All @@ -92,7 +88,6 @@
'header' => gt('Group'),
'name' => 'group',
'value'=>'$data->groups->group_name',
'htmlOptions' => array('class' => 'col-md-2 '),
),

array(
Expand Down

0 comments on commit 9bf3229

Please sign in to comment.