Fix ExportDialog title on export cancellation (#7936)

This commit is contained in:
Suguru Hirahara 2022-03-02 08:58:41 +00:00 committed by GitHub
parent 31f0a37ca2
commit 865dddbb62
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View file

@ -307,7 +307,7 @@ const ExportDialog: React.FC<IProps> = ({ room, onFinished }) => {
// Display successful cancellation message
return (
<InfoDialog
title={_t("Export Successful")}
title={_t("Export Cancelled")}
description={_t("The export was cancelled successfully")}
hasCloseButton={true}
onFinished={onFinished}