Skip to content

Commit

Permalink
fix(fe-authorities): updates 20240620
Browse files Browse the repository at this point in the history
  • Loading branch information
EBaroneITDM authored and fascox committed Jun 24, 2024
1 parent dd8813a commit 563defb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ const ActivityReportTable = forwardRef(function ActivityReportTable(
onActionClick={onActionClick}
actionHeadingLabel='Report righe scartate'
/>
{pagination && pagination.content.length > 0 && (
{pagination && pagination?.content?.length > 0 && (
<Paginator
total={pagination.totalPages}
pageSize={pagination.size}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ export default function CsvInstructions() {
file e leggere il registro dei caricamenti.
</p>
<a
href='/assets/pdf/guida-operativa-csv.pdf'
download='guida-operativa-csv.pdf'
href='/assets/pdf/Guida_Operativa_Caricamento_Dati.pdf'
download='Guida_Operativa_Caricamento_Dati.pdf'
target='_blank'
className='btn p-0 text-primary-action'
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -469,6 +469,7 @@ const AuthoritiesDetails = () => {
nomeEnte: authorityDetails.dettagliInfoEnte
? authorityDetails.dettagliInfoEnte.nome
: undefined,
idEnte: authorityId,
}}
>
{location.pathname.includes('caricamento-dati') && projectDetail ? (
Expand Down

0 comments on commit 563defb

Please sign in to comment.