Skip to content

Commit d6f656d

Browse files
Make column width auto
1 parent af794aa commit d6f656d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

attendees.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -257,20 +257,20 @@
257257
$table = new html_table();
258258
$table->head = [get_string('name')];
259259
$table->align = ['left'];
260-
$table->size = ['50%'];
260+
$table->size = ['auto'];
261261

262262
$showusername = facetoface_should_attendees_show_usernames();
263263
if ($showusername) {
264264
$table->head[] = get_string('username');
265265
$table->align[] = 'left';
266-
$table->size[] = '25%';
266+
$table->size[] = 'auto';
267267
}
268268

269269
$showidnumber = facetoface_should_attendees_show_idnumbers();
270270
if ($showidnumber) {
271271
$table->head[] = get_string('idnumber');
272272
$table->align[] = 'left';
273-
$table->size[] = '25%';
273+
$table->size[] = 'auto';
274274
}
275275

276276
if ($takeattendance) {

0 commit comments

Comments
 (0)