
--
You received this message because you are subscribed to the Google Groups "mementodatabase" group.
To unsubscribe from this group and stop receiving emails from it, send an email to mementodataba...@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/mementodatabase/459ee5d2-dbb1-40b9-92c5-3694fe870b3an%40googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/mementodatabase/5f31afdb-5105-45e6-bfe9-421c5a3054d9n%40googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/mementodatabase/961c7cec-363c-41d7-b94e-1a703f670c7dn%40googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/mementodatabase/073d2128-3867-4324-8594-485deffe6944n%40googlegroups.com.
for (let se of selectedEntries()) {
if (se.field('date') && se.field('time')) {
let date_str = moment(se.field('date')). format("DD/MM/YYYY ");//space after year!
let time_str = moment(se.field('time')). format("HH:mm:ss");
se.set('date_time', date_str + time_str);
}
}