mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
fix: configExists
This commit is contained in:
parent
e6d5181e7d
commit
453016bd75
1 changed files with 1 additions and 1 deletions
|
|
@ -196,7 +196,7 @@ export default function HeliumCtrl($scope, $rootScope, $sce,
|
|||
|
||||
$scope.configExists = function(pkgSearchResult) {
|
||||
// helium package config is persisted per version
|
||||
return pkgSearchResult.pkg.config && pkgSearchResult.pkg.version;
|
||||
return pkgSearchResult.pkg.config && pkgSearchResult.pkg.artifact;
|
||||
};
|
||||
|
||||
$scope.configOpened = function(pkgSearchResult) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue