Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: added show_description to listing attachment #931

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

Wagner3UB
Copy link

No description provided.

@Wagner3UB Wagner3UB self-assigned this Mar 31, 2025
@@ -64,7 +66,7 @@ const AttachmentCardTemplate = ({
: item?.['@id'] + '/@@download/file',
};
}

const listingText = <ListingText item={item} />;
Copy link

@SaraBianchi SaraBianchi Apr 2, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Lo sistemerei a questo punto qui:

const listingText = show_description ? (<ListingText item={item} />) : null;

Comment on lines +98 to +100
{show_description && listingText && (
<div className="bando-description">{listingText}</div>
)}
Copy link

@SaraBianchi SaraBianchi Apr 2, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

{listingText && (<div className="bando-description">{listingText}</div>)

@@ -26,6 +27,7 @@ const AttachmentCardTemplate = ({
linkTitle,
linkHref,
show_pdf_preview,
show_description,

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

show_description = false,

questo ti consente di dire che se non c'è settato alcun valore ancora è inizializzato a false

Comment on lines +36 to +38
show_description: {
default: false,
},

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

credo che tu questo lo possa togliere perchè 'show_description' è una prop già note, infatti non vedo ne label ne description settate qui, prova a rimuoverlo e dimmi se lo vedi lo stesso

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants