remove version check as it happens later in istio upgrade

it was causing the edit to fail

rancher/rancher#25114
This commit is contained in:
Westly Wright 2020-01-27 10:24:32 -07:00
parent a7ea42c89a
commit afcb5c482f
No known key found for this signature in database
GPG Key ID: 4FAB3D8673DC54A3
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@ export default Mixin.create({
const { externalIdInfo } = app;
const currentVersion = get(this, 'apps.firstObject.externalIdInfo.version');
if ( !templateVersion || !currentVersion || templateVersion === currentVersion ) {
if ( !templateVersion || !currentVersion ) {
return cb(false);
}