Skip to content

Commit

Permalink
Modifie le template de la date pour prendre yyyy-MM-dd HH:mm
Browse files Browse the repository at this point in the history
 - Avant on demandait yyyy-MM-dd HH:mm:ss mais on ne se sert pas des
secondes et on affichait en front yyyy-MM-dd HH:mm

Issue: #208367
Change-Id: I87e7eb9c50d2e77627b4e8a89fe5e72d5b4244c4
  • Loading branch information
Renaud-Kieffer committed Feb 29, 2024
1 parent d9a8927 commit 8789ebb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
*/
public class DateUtils {
/** Pattern attendu pour les chaînes représentatives d'une date (moment) */
public static final String PATTERN = "yyyy-MM-dd HH:mm:ss";
public static final String PATTERN = "yyyy-MM-dd HH:mm";

public static final String PATTERN_NATUREL = "dd/MM/yyyy HH:mm:ss";

Expand Down

0 comments on commit 8789ebb

Please sign in to comment.