1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-04 21:25:24 +00:00

Resolve "Can't scroll timezones when setting a date field"

This commit is contained in:
Davide Silvestri 2025-03-11 14:31:16 +01:00
parent 922a77d88f
commit 2c7d363861
2 changed files with 12 additions and 2 deletions
changelog/entries/unreleased/bug
web-frontend/modules/database/components/field

View file

@ -0,0 +1,8 @@
{
"type": "bug",
"message": "Fixed unscrollable timezone dropdown issue when creating/editing a field.",
"domain": "database",
"issue_number": 3041,
"bullet_points": [],
"created_at": "2025-03-10"
}

View file

@ -75,7 +75,8 @@
:add-empty-item="false"
:initial-display-name="defaultValues.date_force_timezone"
:fetch-on-open="true"
:debounce-time="100"
:debounce-time="20"
:page-size="pageSize"
:fixed-items="true"
@input="(timezone) => (values.date_force_timezone = timezone)"
></PaginatedDropdown>
@ -141,6 +142,7 @@ export default {
date_force_timezone: null,
date_force_timezone_offset: null,
},
pageSize: 100,
}
},
computed: {
@ -187,7 +189,7 @@ export default {
},
methods: {
fetchTimezonePage(page, search) {
const pageSize = 20
const pageSize = this.pageSize
const start = (page - 1) * pageSize
const results = this.filterTimezones(search || '')
// The paginate dropdown expects a HTTP response-like object with these properties