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; }