From 6855e3420f0f5aa2de275aaffac419a843f6bc7e Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Tue, 25 Jul 2017 16:16:26 -0400 Subject: [PATCH] Fix search example. --- .../client/src/shared/smart-search/django-search-model.class.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/ui/client/src/shared/smart-search/django-search-model.class.js b/awx/ui/client/src/shared/smart-search/django-search-model.class.js index 1866d41ff2..3809e47a31 100644 --- a/awx/ui/client/src/shared/smart-search/django-search-model.class.js +++ b/awx/ui/client/src/shared/smart-search/django-search-model.class.js @@ -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; }