This commit is contained in:
Jai A
2020-05-27 11:03:19 -07:00
parent c24ab9831a
commit 42a0f452b1
6 changed files with 669 additions and 2 deletions

View File

@@ -91,7 +91,7 @@ pub async fn search_post(web::Query(info): web::Query<SearchRequest>, hb: Data<H
"results": results,
});
let body = hb.render("search_results", &data).unwrap();
let body = hb.render("search-results", &data).unwrap();
HttpResponse::Ok().body(body)
}