Skip to content

Commit

Permalink
Merge pull request #48 from TeskaLabs/fix/dynamic-title
Browse files Browse the repository at this point in the history
Fix dynamic page title
  • Loading branch information
byewokko authored Sep 27, 2024
2 parents c3c3c89 + daa254f commit 2cc88e2
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,17 @@

### Releases

- v24.31-alpha2
- v24.31-alpha1

### Features

- Redirect to invalid code page when pwd_token is missing in query (#46, v24.31-alpha1, PLUM Sprint 240726)

### Fix

- Fix dynamic page title (#48, v24.31-alpha2, PLUM Sprint 240906)

## v24.19

### Releases
Expand Down
2 changes: 1 addition & 1 deletion asab-webui
5 changes: 4 additions & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
<html lang="en">
<head>
<meta charset="utf-8">
<title>TeskaLabs SeaCat Auth</title>

<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta name="theme-color" content="#000000">
<!--
Expand All @@ -28,6 +30,7 @@
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="./media/teskalabs/img/favicon/ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">

<!-- Dynamic config section start -->
<meta name="header-logo-full">
<meta name="header-logo-minimized">
Expand All @@ -36,7 +39,7 @@
<meta name="title">
<meta name="custom-css-file">
<!-- Dynamic config section end -->
<title>SeaCat Auth</title>

</head>
<body>
<noscript>
Expand Down
4 changes: 4 additions & 0 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ if (__CONFIG__.css_file_path != undefined) {

// Configuration
const ConfigDefaults = {
title: 'TeskaLabs SeaCat Auth',
vendor: 'TeskaLabs',
website: 'https://teskalabs.com',
email: 'info@teskalabs.com',
i18n: {
fallbackLng: 'en',
supportedLngs: ['en', 'cs'],
Expand Down

0 comments on commit 2cc88e2

Please sign in to comment.