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