Skip to content

Commit

Permalink
Fix table styling regression bug
Browse files Browse the repository at this point in the history
  • Loading branch information
iliajie committed Apr 8, 2022
1 parent 436f4eb commit 141880e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions authentic.pl
Original file line number Diff line number Diff line change
Expand Up @@ -438,8 +438,9 @@ sub theme_ui_columns_start
my ($rv, $i);

$sortable = ' dtable-sortable' if ($sortable);
$width = ' w-auto-force" ' if ($width eq 'auto');
$rv .= "<table class=\"table table-striped table-hover table-condensed$sortable$width\">" . "\n";
my $width_;
$width_ = ' w-auto-force" ' if ($width eq 'auto');
$rv .= "<table class=\"table table-striped table-hover table-condensed$sortable$width_\">" . "\n";
if ($title) {
$rv .= "<caption>$title</caption>\n";
}
Expand Down

0 comments on commit 141880e

Please sign in to comment.