mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
Change '==' to '===' to make CI green
This commit is contained in:
parent
0fd68ba481
commit
7393c6ab0e
2 changed files with 2 additions and 2 deletions
|
|
@ -156,7 +156,7 @@ export default function HeliumCtrl($scope, $rootScope, $sce,
|
|||
var url = 'https://zeppelin.apache.org/docs/' + zeppelinVersion + '/manual/interpreterinstallation.html';
|
||||
|
||||
var confirm = ''
|
||||
if (type == 'INTERPRETER') {
|
||||
if (type === 'INTERPRETER') {
|
||||
confirm = BootstrapDialog.show({
|
||||
title: '',
|
||||
message: '<p>Below command will download maven artifact ' +
|
||||
|
|
|
|||
|
|
@ -70,7 +70,7 @@ limitations under the License.
|
|||
</div>
|
||||
<div class="row heliumPackageList"
|
||||
ng-repeat="pkgSearchResult in defaultPackages | toArray:false | orderBy: 'pkg.published':true"
|
||||
ng-show="$parent.pkgListByType == pkgSearchResult.pkg.type">
|
||||
ng-show="$parent.pkgListByType === pkgSearchResult.pkg.type">
|
||||
<div class="col-md-12">
|
||||
<div class="heliumPackageHead">
|
||||
<div class="heliumPackageIcon"
|
||||
|
|
|
|||
Loading…
Reference in a new issue