Skip to content

Commit 7ef9d4f

Browse files
committed
fix viewnav
1 parent 57ad964 commit 7ef9d4f

3 files changed

Lines changed: 4 additions & 5 deletions

File tree

client/assets/styles/scss/components/aha-sidebar.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@
5353

5454
.btn {
5555
align-self: center;
56-
margin-top: 21px;
5756
}
5857
}
5958

client/directives/components/ahaGuide/ahaSidebarView.jade

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
.grid-block.vertical.shrink.justify-center.text-center.aha-overview(
1010
ng-if = "$root.featureFlags.ahaOverview"
1111
)
12-
.strong Welcome to your Sandbox! 👋
12+
.grid-content.strong Welcome to your Sandbox! 👋
1313
| It’ll take a few steps to get everything set up. But don’t worry — we’re here to help!
14-
button.btn.btn-sm.green(
14+
button.grid-content.btn.btn-sm.green(
1515
ng-click = "\
1616
$root.featureFlags.ahaOverview = false;\
1717
$root.featureFlags.ahaSidebar = false;\

client/directives/navBar/viewNav.jade

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ a.a(
2121
| Configure
2222

2323
a.a.disabled(
24-
ng-if = "(dataApp.state.includes('base.config') && CA.instancesByPod && !CA.instancesByPod.models.length) || $root.featureFlags.aha1"
24+
ng-if = "(dataApp.state.includes('base.config') && CA.instancesByPod && !CA.instancesByPod.models.length) || $root.featureFlags.aha1 || $root.featureFlags.aha1ExitedEarly"
2525
tooltip = "You don’t have any running containers yet!"
2626
tooltip-options = "{\"class\":\"right\",\"left\":75,\"top\":17}"
2727
)
@@ -32,7 +32,7 @@ a.a.disabled(
3232
| Containers
3333

3434
a.a(
35-
ng-if = "(dataApp.state.includes('base.instances') || !CA.instancesByPod || CA.instancesByPod.models.length) && !$root.featureFlags.aha1"
35+
ng-if = "(dataApp.state.includes('base.instances') || !CA.instancesByPod || CA.instancesByPod.models.length) && !$root.featureFlags.aha1 && !$root.featureFlags.aha1ExitedEarly"
3636
ui-sref = "base.instances({ userName: CA.activeAccount.oauthName() })"
3737
ui-sref-active = "active"
3838
)

0 commit comments

Comments
 (0)