Mongodb – Autocomplete set default value not showing
I need to have default value in my autocomplete. I get the select options from database, like this: let films = await db.collection("films").find().toArray(); Here's the data returned: [ 0: { title: 'The Shawshank Redemption', year: 1994, isDefault: true }, 1:…