Allow to copy entity within the minute

Allow to copy entity within the minute - add seconds, and miliseconds as part of the name
of copied entity.

See: https://github.com/ansible/awx/issues/12279
This commit is contained in:
nixocio 2022-05-24 14:50:00 -04:00
parent d26c12dd7c
commit 3ef9679de3

View File

@ -27,7 +27,7 @@ export function secondsToDays(seconds) {
export function timeOfDay() {
const dateTime = DateTime.local();
return dateTime.toFormat('hh:mm a');
return dateTime.toFormat('hh:mm:ss:ms a');
}
export function dateToInputDateTime(dt, tz = null) {