dev #160

Merged
sora merged 97 commits from dev into master 2025-03-02 01:09:30 +01:00
Showing only changes of commit be46114dd3 - Show all commits

View File

@ -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