Skip to content

Commit

Permalink
alias_mgm: fix colspan when implicit domain is used
Browse files Browse the repository at this point in the history
  • Loading branch information
dariusstefan authored and razvancrainea committed Aug 14, 2024
1 parent dbbe13b commit dc8e626
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@
$labels[$options[$k]['value']] = $options[$k]['label'];

if(!$_SESSION['read_only']){
$colspan = 7;
$colspan = $implicit_domain ? 6 : 7;
}else{
$colspan = 5;
}
Expand Down

0 comments on commit dc8e626

Please sign in to comment.