Skip to content

Commit 10bcfb0

Browse files
author
Ivan Gavryshko
committed
Merge remote-tracking branch 'origin/MAGETWO-44895-web-setup-wizard-missing-title' into PR_Branch
2 parents e2d21f4 + 5c01006 commit 10bcfb0

File tree

4 files changed

+11
-13
lines changed

4 files changed

+11
-13
lines changed

setup/config/states.home.config.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
[
1717
'id' => 'root.home',
1818
'url' => 'home',
19+
'title' => 'Setup Wizard',
1920
'templateUrl' => "$base/home",
2021
'header' => 'Home',
2122
'nav' => false,
@@ -27,7 +28,7 @@
2728
'id' => 'root.update',
2829
'url' => 'component-grid',
2930
'templateUrl' => "$base/component-grid",
30-
'title' => "Component Manager",
31+
'title' => 'Component Manager',
3132
'controller' => 'componentGridController',
3233
'nav' => false,
3334
'noMenu' => true,
@@ -50,7 +51,7 @@
5051
'id' => 'root.upgrade',
5152
'url' => 'select-version',
5253
'templateUrl' => "$base/select-version",
53-
'title' => 'Select Version',
54+
'title' => 'System Upgrade',
5455
'controller' => 'selectVersionController',
5556
'header' => 'Step 1: Select Version',
5657
'order' => 1,

setup/config/states.install.config.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
'id' => 'root.landing-install',
3131
'url' => 'landing-install',
3232
'templateUrl' => "$base/landing-installer",
33-
'title' => 'Landing',
33+
'title' => 'Installation',
3434
'controller' => 'landingController',
3535
'main' => true,
3636
'default' => true,
@@ -120,6 +120,7 @@
120120
'id' => 'root.success',
121121
'url' => 'success',
122122
'templateUrl' => "{$base}/success",
123+
'title' => 'Success',
123124
'controller' => 'successController',
124125
'main' => true,
125126
'order' => 8,

setup/view/layout/layout.phtml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
<head>
1414
<meta charset="utf-8">
1515
<meta name="viewport" content="width=device-width, initial-scale=1">
16+
<title>{{$state.current.title}}</title>
1617
<?php echo $this->headLink()
1718
->appendStylesheet($this->basePath() . '/pub/styles/setup.css');
1819
?>
@@ -67,6 +68,11 @@
6768
href="<?php echo $this->basePath() ?>/pub/images/favicon/favicon-16x16.png"
6869
sizes="16x16">
6970
<?php echo $this->inlineScript() ?>
71+
<style>
72+
a.white-space-pre-line {
73+
white-space: pre-line;
74+
}
75+
</style>
7076
</head>
7177
<body>
7278
<?php echo $this->content; ?>

setup/view/magento/setup/navigation/menu.phtml

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,6 @@
77
// @codingStandardsIgnoreFile
88

99
?>
10-
<head>
11-
<title>{{$state.current.title}}</title>
12-
<style>
13-
a.white-space-pre-line {
14-
white-space: pre-line;
15-
}
16-
</style>
17-
18-
</head>
19-
2010

2111
<nav ng-controller="navigationController" id="menu" class="nav ng-scope show"
2212
ng-hide="$state.current.noMenu || $state.current.main || $state.current.default">

0 commit comments

Comments
 (0)