Skip to content

Commit

Permalink
fix(T246): modifica testo aggiunta cittadini a servizio con data futu…
Browse files Browse the repository at this point in the history
…ra 20241112
  • Loading branch information
federico-tocci-dxc committed Nov 12, 2024
1 parent cd3f608 commit 13c594d
Showing 1 changed file with 14 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -322,12 +322,20 @@ const CitizensList: React.FC<{ dataServizio: Date }> = ({ dataServizio }) => {
)}
</GenericSearchFilterTableLayout>
) : (
<EmptySection
title='Questa sezione è ancora vuota'
subtitle='Aggiungi i cittadini'
buttons={buttons}
/>
)}
moment().isBefore(moment(dataServizio)) ? (
<EmptySection
title='La data del servizio è impostata nel futuro'
subtitle='Sarà possibile aggiungere i cittadini a questo servizio a partire dalla data indicata'
buttons={buttons}
/>
) : (
<EmptySection
title='Questa sezione è ancora vuota'
subtitle='Aggiungi i cittadini'
buttons={buttons}
/>
)
)}
<ManageCitizenInService />
<ConfirmSentSurveyModal />
<UploadCSVModal
Expand Down

0 comments on commit 13c594d

Please sign in to comment.