mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
meta can be either empty string or undefined
Change-Id: I0da3c5c70840a1356bd59a38d37eddff11e48d6d
This commit is contained in:
parent
e6ad8d1c70
commit
fcd551fe1d
1 changed files with 1 additions and 1 deletions
|
|
@ -1019,7 +1019,7 @@ function ParagraphCtrl($scope, $rootScope, $route, $window, $routeParams, $locat
|
|||
let prev = null;
|
||||
|
||||
matches = matches.filter(function(item) {
|
||||
if (item.meta !== '') {
|
||||
if (!_.isEmpty(item.meta)) {
|
||||
if (completionListLength !== 0) {
|
||||
return false;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue