Skip to content

Commit 86b060d

Browse files
committed
style(handler.ts): Add missing titles to rendered pages
1 parent 8eade50 commit 86b060d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/handler.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1237,6 +1237,7 @@ export async function getAppSettingsPageHandler(req: Request, res: Response) {
12371237
}
12381238

12391239
return res.render('apps-id-settings.html', {
1240+
title: 'App Settings',
12401241
app,
12411242
layout: '../layouts/app.html',
12421243
path: `/apps/${app.id}/settings`,
@@ -1286,6 +1287,7 @@ export async function getAppNotificationsPageHandler(req: Request, res: Response
12861287
.paginate({ perPage, currentPage, isLengthAware: true });
12871288

12881289
return res.render('apps-id-notifications.html', {
1290+
title: 'App Notifications',
12891291
app: {
12901292
...app,
12911293
notifications: result.data,
@@ -1299,6 +1301,7 @@ export async function getAppNotificationsPageHandler(req: Request, res: Response
12991301
// GET /apps/create
13001302
export async function getCreateNewAppPageHandler(req: Request, res: Response) {
13011303
return res.render('apps-create.html', {
1304+
title: 'App Create',
13021305
layout: '../layouts/auth.html',
13031306
path: '/apps/create',
13041307
});

0 commit comments

Comments
 (0)