People: Increase search batch size for subjects and faces #22
This commit is contained in:
parent
1f92f294dd
commit
3c8d59e86f
3 changed files with 2 additions and 14 deletions
|
@ -114,7 +114,7 @@ export class Face extends RestModel {
|
|||
}
|
||||
|
||||
static batchSize() {
|
||||
return 60;
|
||||
return 500;
|
||||
}
|
||||
|
||||
static getCollectionResource() {
|
||||
|
|
|
@ -132,7 +132,7 @@ export class Subject extends RestModel {
|
|||
}
|
||||
|
||||
static batchSize() {
|
||||
return 60;
|
||||
return 500;
|
||||
}
|
||||
|
||||
static getCollectionResource() {
|
||||
|
|
|
@ -5,18 +5,6 @@
|
|||
|
||||
<v-form ref="form" class="p-faces-search" lazy-validation dense @submit.prevent="updateQuery">
|
||||
<v-toolbar dense flat color="secondary-light pa-0">
|
||||
<!-- v-text-field id="search"
|
||||
v-model="filter.q"
|
||||
class="input-search background-inherit elevation-0"
|
||||
solo hide-details
|
||||
:label="$gettext('Search')"
|
||||
prepend-inner-icon="search"
|
||||
browser-autocomplete="off"
|
||||
clearable overflow
|
||||
color="secondary-dark"
|
||||
@click:clear="clearQuery"
|
||||
@keyup.enter.native="updateQuery"
|
||||
></v-text-field -->
|
||||
<v-spacer></v-spacer>
|
||||
<v-divider vertical></v-divider>
|
||||
|
||||
|
|
Loading…
Reference in a new issue