Skip to content

Commit

Permalink
fix #277
Browse files Browse the repository at this point in the history
  • Loading branch information
philipskokoh committed Oct 18, 2016
1 parent f83b1ac commit b53d7a9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion _site/app.js
Expand Up @@ -694,6 +694,8 @@

var coretype_map = {
"string" : "string",
"keyword" : "string",
"text" : "string",
"byte" : "number",
"short" : "number",
"long" : "number",
Expand Down Expand Up @@ -853,7 +855,6 @@
this.indices = [];
this.types = [];
this.search = {
fields : [ "_parent", "_source" ],
query: { bool: { must: [], must_not: [], should: [] } },
from: 0,
size: this.config.size,
Expand Down
2 changes: 2 additions & 0 deletions src/app/data/metaData.js
Expand Up @@ -48,6 +48,8 @@

var coretype_map = {
"string" : "string",
"keyword" : "string",
"text" : "string",
"byte" : "number",
"short" : "number",
"long" : "number",
Expand Down
1 change: 0 additions & 1 deletion src/app/data/query.js
Expand Up @@ -16,7 +16,6 @@
this.indices = [];
this.types = [];
this.search = {
fields : [ "_parent", "_source" ],
query: { bool: { must: [], must_not: [], should: [] } },
from: 0,
size: this.config.size,
Expand Down

0 comments on commit b53d7a9

Please sign in to comment.