Update template/module/journey_step.pug
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
951172ede3
commit
be46114dd3
@ -40,15 +40,15 @@ div(v-for="(e, idx) in journey.data.main", :key="idx")
|
|||||||
track-by="place_id",
|
track-by="place_id",
|
||||||
placeholder="Type to search",
|
placeholder="Type to search",
|
||||||
open-direction="bottom",
|
open-direction="bottom",
|
||||||
:options="query.nominatim",
|
:options="query.res",
|
||||||
:searchable="true",
|
:searchable="true",
|
||||||
:loading="querying.hotel",
|
:loading="query.act && query.type=='hotel'",
|
||||||
:internal-search="false",
|
:internal-search="false",
|
||||||
:clear-on-select="false",
|
:clear-on-select="false",
|
||||||
:options-limit="50",
|
:options-limit="50",
|
||||||
:limit="1",
|
:limit="1",
|
||||||
:max-height="600",
|
:max-height="600",
|
||||||
@search-change="debounceSearch.hotel"
|
@search-change="search_hotel"
|
||||||
)
|
)
|
||||||
.row.text-center
|
.row.text-center
|
||||||
div
|
div
|
||||||
@ -60,15 +60,15 @@ div(v-for="(e, idx) in journey.data.main", :key="idx")
|
|||||||
placeholder="Type to search",
|
placeholder="Type to search",
|
||||||
open-direction="bottom",
|
open-direction="bottom",
|
||||||
:multiple="true",
|
:multiple="true",
|
||||||
:options="query.nominatim",
|
:options="query.res",
|
||||||
:searchable="true",
|
:searchable="true",
|
||||||
:loading="querying.food",
|
:loading="query.act && query.type == 'restaurant'",
|
||||||
:internal-search="false",
|
:internal-search="false",
|
||||||
:clear-on-select="false",
|
:clear-on-select="false",
|
||||||
:options-limit="50",
|
:options-limit="50",
|
||||||
:limit="10",
|
:limit="10",
|
||||||
:max-height="600",
|
:max-height="600",
|
||||||
@search-change="debounceSearch.restaurants"
|
@search-change="search_restaurant"
|
||||||
)
|
)
|
||||||
.row.text-center
|
.row.text-center
|
||||||
div
|
div
|
||||||
@ -80,15 +80,15 @@ div(v-for="(e, idx) in journey.data.main", :key="idx")
|
|||||||
placeholder="Type to search",
|
placeholder="Type to search",
|
||||||
open-direction="bottom",
|
open-direction="bottom",
|
||||||
:multiple="true",
|
:multiple="true",
|
||||||
:options="query.nominatim",
|
:options="query.res",
|
||||||
:searchable="true",
|
:searchable="true",
|
||||||
:loading="querying.place",
|
:loading="query.act && query.type=='place'",
|
||||||
:internal-search="false",
|
:internal-search="false",
|
||||||
:clear-on-select="false",
|
:clear-on-select="false",
|
||||||
:options-limit="50",
|
:options-limit="50",
|
||||||
:limit="10",
|
:limit="10",
|
||||||
:max-height="600",
|
:max-height="600",
|
||||||
@search-change="debounceSearch.places"
|
@search-change="search_place"
|
||||||
)
|
)
|
||||||
.row.text-center
|
.row.text-center
|
||||||
div
|
div
|
||||||
|
Loading…
x
Reference in New Issue
Block a user