Commit 945c51ff authored by Pedro Eduardo Trujillo's avatar Pedro Eduardo Trujillo
Browse files

Omite consulta de atlas al traer sugerencias

parent b1686316
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -55,9 +55,11 @@ define([
				pathSeparator: this.pathSeparator
			});

			this._subscribe(this.filter.getChannel('ADDED_TO_QUERY'), lang.hitch(this, function() {
			this._subscribe(this.filter.getChannel('ADDED_TO_QUERY'), lang.hitch(this, function(query) {

				if (query && Object.keys(query).indexOf('suggest') === -1) {
					this._emitEvt('REFRESH');
				}
			}));
		},