We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af794aa commit d6f656dCopy full SHA for d6f656d
attendees.php
@@ -257,20 +257,20 @@
257
$table = new html_table();
258
$table->head = [get_string('name')];
259
$table->align = ['left'];
260
- $table->size = ['50%'];
+ $table->size = ['auto'];
261
262
$showusername = facetoface_should_attendees_show_usernames();
263
if ($showusername) {
264
$table->head[] = get_string('username');
265
$table->align[] = 'left';
266
- $table->size[] = '25%';
+ $table->size[] = 'auto';
267
}
268
269
$showidnumber = facetoface_should_attendees_show_idnumbers();
270
if ($showidnumber) {
271
$table->head[] = get_string('idnumber');
272
273
274
275
276
if ($takeattendance) {
0 commit comments