mirror of
https://github.com/f/awesome-chatgpt-prompts.git
synced 2025-03-28 16:48:02 -04:00
/vibe code examples
This commit is contained in:
parent
957a4c41dc
commit
29436b09bd
@ -189,8 +189,8 @@ function setupSearch() {
|
||||
searchInput.addEventListener('input', async (e) => {
|
||||
const query = e.target.value.toLowerCase();
|
||||
const prompts = await loadPrompts();
|
||||
const filtered = prompts.filter(({ act, prompt }) =>
|
||||
act.toLowerCase().includes(query) || prompt.toLowerCase().includes(query)
|
||||
const filtered = prompts.filter(({ app, prompt }) =>
|
||||
app.toLowerCase().includes(query) || prompt.toLowerCase().includes(query)
|
||||
);
|
||||
|
||||
// Update prompt count
|
||||
|
Loading…
x
Reference in New Issue
Block a user