Этот коммит содержится в:
Ben Schumacher
2025-01-13 20:23:09 +01:00
коммит произвёл GitHub
родитель 091d1bba8b
Коммит 8d4bf4bae0
50 изменённых файлов: 2429 добавлений и 745 удалений

Просмотреть файл

@@ -92,8 +92,8 @@ export default class CommercialSupportModal extends React.PureComponent<Props, S
extractFilename = (input: string | null): string => {
// construct the expected filename in case of an error in the header
const formattedDate = (moment(new Date())).format('YYYY-MM-DD-HH-mm');
const presumedFileName = `mattermost_support_packet_${formattedDate}.zip`;
const formattedDate = (moment(new Date())).format('YYYY-MM-DDTHH-mm');
const presumedFileName = `mm_support_packet_${formattedDate}.zip`;
if (input === null) {
return presumedFileName;