Fix search example.

This commit is contained in:
Bill Nottingham 2017-07-25 16:16:26 -04:00
parent a6f5686ef4
commit 6855e3420f

View File

@ -41,7 +41,7 @@ class DjangoSearchModel {
stringFound = true;
}
if(!dateTimeFound && value.type === 'datetime') {
this.searchExamples.push(key + ":>=\"2000-01-01T00:00:00Z\"");
this.searchExamples.push(key + ":>=2000-01-01T00:00:00Z");
this.searchExamples.push(key + ":<2000-01-01");
dateTimeFound = true;
}