Skip to content

Commit

Permalink
fix: visualizzazione altri argomenti in blocco argomenti quando il lo…
Browse files Browse the repository at this point in the history
…ro numero è esiguo (#493)

* fix: visualizzazione altri argomenti in blocco argomenti quando il loro numero è esiguo

* fix: use col-lg-auto instead, remove unnecessary text-start class
  • Loading branch information
deodorhunter authored Jan 29, 2024
1 parent 2800f1d commit 9644292
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,12 @@
- ...
-->

## Versione X.X.X (dd/mm/yyyy)

### Fix

- Risolto un problema di visualizzazione degli argomenti indicati come altri argomenti nel blocco Argomenti quando il loro numero è esiguo

## Versione 11.3.2 (19/01/2023)

### Fix
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ const messages = defineMessages({
const BottomBody = ({ data, intl }) => {
return data?.arguments?.length > 0 ? (
<Container className="text-center">
<div className="row d-lg-inline-flex pt-5">
<div className="col-lg-3">
<div className="row d-lg-inline-flex align-items-center pt-5">
<div className="col-lg-auto">
<h6 className="text-uppercase text-center mt-1">
{intl?.formatMessage(messages.otherArguments)}
</h6>
</div>
<div className="col-lg-9 text-start">
<div className="col-lg-auto">
{data?.arguments?.map((argument, index) => (
<Chip
color="primary"
Expand Down

0 comments on commit 9644292

Please sign in to comment.