Skip to content

Commit

Permalink
labeling nitpicks, bump v0.4.7
Browse files Browse the repository at this point in the history
  • Loading branch information
alexsmith540 committed Oct 5, 2021
1 parent ebae6f2 commit fdc17b3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.4.6
v0.4.7
5 changes: 3 additions & 2 deletions client/js/akt/AKTClusterConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,6 @@ export class AKTClusterConfig{

})
if(canConfigureKubernetes){
$('#ingressPortsMessage').show();
$('#initCluster').removeClass('cancel').addClass('save');
let k8sConfigEnhanced = this.autoConfigureK8sData(configData);
this.renderKubernetesConfig(configData);
Expand Down Expand Up @@ -259,7 +258,9 @@ export class AKTClusterConfig{
}
}
})

if(ingressName != ''){
$('#ingressPortsMessage').show();
}
configData.nodes.map(node=>{
if(!node.selected){
return;
Expand Down
3 changes: 2 additions & 1 deletion client/js/akt/AKTDashboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,9 @@ export class AKTDashboard {
})
this.socket.on('kubesprayVersionStatus',data=>{
console.log('kubespray version status',data);
if(data.local != data.latest){
if(data.local != data.latest && data.latest.trim() != ''){
//show kubespray update option
//ensure its not blank
$('.options #kubesprayUpdateAvailable').show();
$('.options #kubesprayUpdateAvailable').off('click').on('click',()=>{
//show modal
Expand Down

0 comments on commit fdc17b3

Please sign in to comment.