Fix expiration text
This commit is contained in:
parent
3661c0a50b
commit
b895c8518b
|
@ -234,7 +234,7 @@ const populateFilesTable = () => {
|
||||||
: '<i class="small mdi-navigation-close"></i>';
|
: '<i class="small mdi-navigation-close"></i>';
|
||||||
const dlink = `${actionURL}d/${element.short}/${element.token}`;
|
const dlink = `${actionURL}d/${element.short}/${element.token}`;
|
||||||
const limit =
|
const limit =
|
||||||
element.delay === 0
|
element.delay == 0
|
||||||
? i18n.noExpiration
|
? i18n.noExpiration
|
||||||
: formatDate(element.delay * 86400 + element.created_at);
|
: formatDate(element.delay * 86400 + element.created_at);
|
||||||
const created_at = formatDate(element.created_at);
|
const created_at = formatDate(element.created_at);
|
||||||
|
|
Loading…
Reference in New Issue