Commit 9eb3bf5e authored by Danny Tuppeny's avatar Danny Tuppeny Committed by Danny Tuppeny

Don't show last bullet if there's no label

parent e9281c4a
......@@ -126,7 +126,7 @@ abstract class Emulator {
return table.map((List<String> row) {
return indices
.map((int i) => row[i].padRight(widths[i]))
.join(' • ') + ' • ${row.last}';
.join(' • ') + (row.last != '' ? ' • ${row.last}' : '');
}).toList();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment