Skip to content

Commit d113a9b

Browse files
authored
Resolved a bug which prevented builder data source and workflow action filtering with formula values from working correctly (baserow#4861)
1 parent 319115e commit d113a9b

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"type": "bug",
3+
"message": "Resolved a bug which prevented builder data source and workflow action filtering with formula values from working correctly.",
4+
"issue_origin": "github",
5+
"issue_number": 4860,
6+
"domain": "integration",
7+
"bullet_points": [],
8+
"created_at": "2026-02-24"
9+
}

web-frontend/modules/builder/components/dataSource/DataSourceCreateEditModal.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ export default {
8888
computed: {
8989
submitIsDisabled() {
9090
return (
91-
this.loading || !this.changed || this.$refs.dataSourceForm.v$.$anyError
91+
this.loading || !this.changed || this.$refs.dataSourceForm?.v$.$anyError
9292
)
9393
},
9494
dataSources() {

web-frontend/modules/builder/components/elements/baseComponents/ABDateTimePicker.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,9 @@ export default {
111111
},
112112
},
113113
emits: ['update:modelValue'],
114+
setup() {
115+
return useDatePickerLanguage()
116+
},
114117
data() {
115118
return {
116119
dateInputValue: '',
@@ -138,9 +141,6 @@ export default {
138141
immediate: true,
139142
},
140143
},
141-
setup() {
142-
return useDatePickerLanguage()
143-
},
144144
methods: {
145145
refreshDate(value) {
146146
if (!value) {

web-frontend/modules/integrations/localBaserow/components/services/LocalBaserowTableServiceConditionalForm.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
>
3333
<InjectedFormulaInput
3434
v-if="filter.value_is_formula && propFilterType.hasEditableValue"
35-
:value="getFormulaObject(filter)"
35+
:model-value="getFormulaObject(filter)"
3636
class="filters__value--formula-input"
3737
:placeholder="
3838
$t(

0 commit comments

Comments
 (0)