File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1872,7 +1872,7 @@ sub set_selected_columns {
18721872 confess(" must set a type" );
18731873 }
18741874 my $ref_col = $default_cols || $default_compat_columns -> {$type } || $default_compat_columns -> {$prefix .$type };
1875- my $cols = Thruk::Base::list($c -> req-> parameters-> {$prefix .' columns' } || Thruk::Base::list( $c -> req-> parameters-> {' columns' }) || $ref_col );
1875+ my $cols = Thruk::Base::list( $c -> req-> parameters-> {$prefix .' columns' } || $c -> req-> parameters-> {' columns' } || $ref_col );
18761876 for my $col (@{$cols }) {
18771877 if ($col =~ m / ^\d +$ / mx ) {
18781878 push @{$columns }, $ref_col -> [$col -1];
@@ -1884,6 +1884,7 @@ sub set_selected_columns {
18841884 $c -> stash-> {$prefix .' last_col' } = chr (65+$last_col -1); # Excel column names start with A, which has ASCII value 65
18851885 $c -> stash-> {$prefix .' columns' } = $columns ;
18861886 $c -> stash-> {' last_col' } = chr (65+$last_col -1); # Excel column names start with A, which has ASCII value 65
1887+ # In the combined view when selecting all fields from Hosts and Services, the total number goes beyond 26 and spills over to the AA, AB rows.
18871888 $c -> stash-> {' columns' } = $columns ;
18881889 }
18891890
You can’t perform that action at this time.
0 commit comments