Fixing translation key for sendAppPage.ts

This commit is contained in:
Jarosław Sadziński 2022-10-27 10:50:51 +02:00
parent c9933b6908
commit 24b1ca92d7

View File

@ -157,7 +157,7 @@ function configuredPageTitleSuffix() {
*/ */
function getPageTitle(req: express.Request, config: GristLoadConfig): string { function getPageTitle(req: express.Request, config: GristLoadConfig): string {
const maybeDoc = getDocFromConfig(config); const maybeDoc = getDocFromConfig(config);
if (!maybeDoc) { return translate(req, 'sendAppPage.Loading') + "..."; } if (!maybeDoc) { return translate(req, 'Loading') + "..."; }
return handlebars.Utils.escapeExpression(maybeDoc.name); return handlebars.Utils.escapeExpression(maybeDoc.name);
} }