mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 13:28:11 +00:00
chore(filters): removed authors propositions for hidden sceneries
This commit is contained in:
@@ -35,6 +35,7 @@
|
|||||||
id="scenery-search"
|
id="scenery-search"
|
||||||
list="sceneries"
|
list="sceneries"
|
||||||
:placeholder="$t('filters.sceneries-placeholder')"
|
:placeholder="$t('filters.sceneries-placeholder')"
|
||||||
|
@change="handleSceneriesInput"
|
||||||
@focus="preventKeyDown = true"
|
@focus="preventKeyDown = true"
|
||||||
@blur="preventKeyDown = false"
|
@blur="preventKeyDown = false"
|
||||||
/>
|
/>
|
||||||
@@ -258,6 +259,8 @@ export default defineComponent({
|
|||||||
authorsOptions() {
|
authorsOptions() {
|
||||||
return this.store.stationList
|
return this.store.stationList
|
||||||
.reduce((acc, station) => {
|
.reduce((acc, station) => {
|
||||||
|
if (station.generalInfo?.hidden === true) return acc;
|
||||||
|
|
||||||
station.generalInfo?.authors?.forEach((author) => {
|
station.generalInfo?.authors?.forEach((author) => {
|
||||||
if (author.trim() != '' && !acc.includes(author.toLocaleLowerCase()))
|
if (author.trim() != '' && !acc.includes(author.toLocaleLowerCase()))
|
||||||
acc.push(author.toLocaleLowerCase());
|
acc.push(author.toLocaleLowerCase());
|
||||||
|
|||||||
Reference in New Issue
Block a user