Skip to content

Commit 1885ee7

Browse files
authored
Update Group Name when no DevStudio and CDK installed (#1377)
Fix removes 'Miscellaneous' from title of the group dedicated to show comonents installed that are not related to cdk or devstudio. It also removes 'other' from group's description.
1 parent 0362a94 commit 1885ee7

1 file changed

Lines changed: 19 additions & 5 deletions

File tree

browser/pages/start/start.html

Lines changed: 19 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@
44
<div class="container-fluid container-cards-pf">
55
<div class="alert alert-success success-message col-sm-10">
66
<span class="pficon pficon-ok"></span>
7-
<span id="install-alert">Great job!! All components installed. Click on <b>Get Started</b> to proceed.</span>
7+
<span id="install-alert-featured-components" ng-show="startCtrl.devstudioInstall.installed || startCtrl.cdkInstall.installed">
8+
Great job!! All components installed. Click on <b>Get Started</b> to proceed.
9+
</span>
10+
<span id="install-alert" ng-hide="startCtrl.devstudioInstall.installed || startCtrl.cdkInstall.installed">
11+
Great job!! All components installed.
12+
</span>
813
</div>
914
<div>
1015
<button type="button" class="btn btn-default btn-close pull-right" id="exit-btn" ng-click="startCtrl.exit()">Close installer</button>
@@ -17,10 +22,19 @@
1722
<div class="card-pf-body" style="min-height: 100px; overflow: hidden;">
1823
<section class="product-header">
1924
<div class="row">
20-
<div class="header-column">
21-
<h2>
22-
<span class="field-name-title">Miscellaneous Components</span>
23-
</h2>
25+
<div class="header-column">
26+
<h2 ng-show="startCtrl.devstudioInstall.installed || startCtrl.cdkInstall.installed">
27+
<span class="field-name-title">Miscellaneous Installed Components</span>
28+
</h2>
29+
<div ng-show="startCtrl.devstudioInstall.installed || startCtrl.cdkInstall.installed">
30+
The list of other installed components
31+
</div>
32+
<h2 ng-hide="startCtrl.devstudioInstall.installed || startCtrl.cdkInstall.installed">
33+
<span class="field-name-title">Installed Components</span>
34+
</h2>
35+
<div ng-hide="startCtrl.devstudioInstall.installed || startCtrl.cdkInstall.installed">
36+
The list of installed components
37+
</div>
2438
</div>
2539
</div>
2640
</section>

0 commit comments

Comments
 (0)