Compare commits
No commits in common. "caa6812bc228af4dce24b83357e1d76d032dc8e7" and "099296280cdf31c180e273025de508bb83d37ee2" have entirely different histories.
caa6812bc2
...
099296280c
|
@ -439,7 +439,7 @@ async function createAlert() {
|
|||
|
||||
async function searchActors() {
|
||||
const res = await get('/actors', {
|
||||
q: `${actorQuery.value}*`, // return partial matches
|
||||
q: actorQuery.value,
|
||||
limit: 10,
|
||||
});
|
||||
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
{
|
||||
"name": "traxxx-web",
|
||||
"version": "0.19.4",
|
||||
"version": "0.19.3",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"version": "0.19.4",
|
||||
"version": "0.19.3",
|
||||
"dependencies": {
|
||||
"@brillout/json-serializer": "^0.5.8",
|
||||
"@dicebear/collection": "^7.0.5",
|
||||
|
|
|
@ -75,5 +75,5 @@
|
|||
"postcss-custom-media": "^10.0.2",
|
||||
"postcss-nesting": "^12.0.2"
|
||||
},
|
||||
"version": "0.19.4"
|
||||
"version": "0.19.3"
|
||||
}
|
||||
|
|
|
@ -29,8 +29,8 @@ export async function fetchEntities(options) {
|
|||
if (options.query) {
|
||||
builder.where((whereBuilder) => {
|
||||
whereBuilder
|
||||
.whereILike('name', `%${options.query}%`)
|
||||
.orWhereILike('slug', `%${options.query}%`);
|
||||
.whereLike('name', options.query)
|
||||
.orWhereLike('slug', options.query);
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue