Fix about date display (#14442)

This commit is contained in:
Tony Murray
2022-10-11 16:10:11 -05:00
committed by GitHub
parent fafd989971
commit 3cdbf35a86

View File

@ -232,7 +232,7 @@ along with this program. If not, see <a target="_blank" href="https://www.gnu.o
var ver_date = $('#version_date');
if (ver_date.text()) {
ver_date.text(' - '.concat(moment.unix(ver_date.text()))).show();
ver_date.text(' - '.concat(moment(ver_date.text()))).show();
}
</script>
@endsection