Skip to content

Commit

Permalink
fix: fixed regression for default classes in SearchBlock view that we…
Browse files Browse the repository at this point in the history
…re overflowing content into columns
  • Loading branch information
deodorhunter committed Oct 16, 2023
1 parent b3ec883 commit b88e7c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
- Alcune icone mancanti nel widget icone fontawesome sono state rese nuovamente visibili
- Sistemate inconsistenze nella visualizzazione di alcuni tipi di elementi della lista degli allegati in Cartella Modulistica
- Visualizzazione sidebar in edit del blocco Numeri: sistemato overflowing del testo di aiuto
- Sistemate le dimensioni dei risultati del blocco search con colonne laterali, rimosso overflow.

## Versione 8.7.8 (12/10/2023)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ const ListingBody = React.memo(
const isSearchBlockResults = variation?.['@type'] === 'search';
const block = isSearchBlockResults ? variation : data;

if (!block?.show_block_bg) return 'full-width';
if (!block?.show_block_bg && !isSearchBlockResults) return 'full-width';

let bg_color = data.bg_color ? `bg-${data.bg_color}` : '';

Expand Down

0 comments on commit b88e7c9

Please sign in to comment.