@genesislcap/blank-app-seed 3.4.1 → 3.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.genx/package.json
CHANGED
package/.github/CODEOWNERS
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
# for reference see https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github/about-code-owners#example-of-a-codeowners-file
|
|
2
2
|
|
|
3
|
-
* @cistov @derekdon @MrBrunoWolff @skawian @kievitsp @jacinpoz @khouari1 @rafaelnferreira
|
|
3
|
+
* @cistov @derekdon @MrBrunoWolff @skawian @kievitsp @jacinpoz @khouari1 @rafaelnferreira @matteematt
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [3.4.2](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v3.4.1...v3.4.2) (2024-04-29)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* default HTML page title to app name GENC-375 (#197) 5134fd4
|
|
9
|
+
|
|
3
10
|
## [3.4.1](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v3.4.0...v3.4.1) (2024-04-29)
|
|
4
11
|
|
|
5
12
|
|
package/client/index.html
CHANGED
|
@@ -9,7 +9,7 @@ https://handlebarsjs.com/
|
|
|
9
9
|
}}
|
|
10
10
|
<head>
|
|
11
11
|
<meta charset="utf-8"/>
|
|
12
|
-
<title
|
|
12
|
+
<title>{{capitalCase appName}}</title>
|
|
13
13
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
14
14
|
{{#if enableSSO}}
|
|
15
15
|
<script src="/initSSO.js"></script>
|
|
@@ -39,7 +39,7 @@ export class MainRouterConfig extends FoundationRouterConfiguration<LoginSetting
|
|
|
39
39
|
|
|
40
40
|
async configure() {
|
|
41
41
|
this.configureAnalytics();
|
|
42
|
-
this.title = '
|
|
42
|
+
this.title = '{{capitalCase appName}}';
|
|
43
43
|
this.defaultLayout = defaultLayout;
|
|
44
44
|
|
|
45
45
|
const authPath = 'login';
|
|
@@ -2,5 +2,5 @@ import { expect } from '@genesislcap/foundation-testing/e2e';
|
|
|
2
2
|
import { test } from '../fixture';
|
|
3
3
|
|
|
4
4
|
test('expected page title', async ({ protectedPage, page }) => {
|
|
5
|
-
await expect(page).toHaveTitle(/
|
|
5
|
+
await expect(page).toHaveTitle(/Testapp - Login - Login/);
|
|
6
6
|
});
|