Add text to search criteria and expand placeholder note

This commit is contained in:
Ryan Prather 2024-05-17 09:10:12 -04:00
parent 9a76624d1c
commit 212021b261
2 changed files with 2 additions and 1 deletions

View File

@ -39,6 +39,7 @@ class NoteRepository extends ServiceEntityRepository
->orderBy('n.date', 'DESC')
->where('n.title LIKE :query')
->orWhere('n.passage LIKE :query')
->orWhere('n.text LIKE :query')
->andWhere('n.user = :user')
->setParameter('query', "%{$query}%")
->setParameter('user', $userId)

View File

@ -5,7 +5,7 @@
<!-- Search -->
{% if app.user %}
<section id="search" class="alt">
<input type="text" name="query" id="query" placeholder="Search for note by title or passage" />
<input type="text" name="query" id="query" placeholder="Search by title, passage, or note" />
</section>
{% endif %}