Skip to content

Commit

Permalink
Fix bad rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
nwmac authored and richard-cox committed Sep 17, 2021
1 parent e544d35 commit 3933374
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions components/nav/TopLevelMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -53,17 +53,13 @@ export default {
showClusterSearch() {
return this.clusters.length > this.maxClustersToShow;
const all = this.$store.getters['management/all'](MANAGEMENT.CLUSTER);
const kubeClusters = filterOnlyKubernetesClusters(all);
return kubeClusters.length > this.maxClustersToShow;
},
clusters() {
const all = this.$store.getters['management/all'](MANAGEMENT.CLUSTER);
const kubeClusters = filterOnlyKubernetesClusters(all);
let out = kubeClusters.map((x) => {
return kubeClusters.map((x) => {
return {
id: x.id,
label: x.nameDisplay,
Expand Down

0 comments on commit 3933374

Please sign in to comment.