This repository was archived by the owner on Mar 9, 2025. It is now read-only.
File tree 5 files changed +8
-10
lines changed
5 files changed +8
-10
lines changed Original file line number Diff line number Diff line change 9
9
"fundingUrl" : {
10
10
"Buymeacoffee" : " https://www.buymeacoffee.com/treywallis"
11
11
},
12
- "version" : " 8.15.6 "
12
+ "version" : " 8.15.7 "
13
13
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " obsidian-dataloom" ,
3
- "version" : " 8.15.6 " ,
3
+ "version" : " 8.15.7 " ,
4
4
"description" : " Weave together data from diverse sources into different views. Inspired by Excel Spreadsheets and Notion.so." ,
5
5
"main" : " main.js" ,
6
6
"scripts" : {
Original file line number Diff line number Diff line change @@ -304,8 +304,8 @@ export default function FilterMenu({
304
304
onUpdate ( id , { text } ) ;
305
305
}
306
306
307
- function onCheckboxChange ( id : string , text : string ) {
308
- onUpdate ( id , { text } ) ;
307
+ function onCheckboxChange ( id : string , value : boolean ) {
308
+ onUpdate ( id , { value } ) ;
309
309
}
310
310
311
311
function onDateFilterOptionChange ( id : string , option : DateFilterOption ) {
@@ -436,10 +436,7 @@ export default function FilterMenu({
436
436
< CheckboxFilterSelect
437
437
value = { value }
438
438
onChange = { ( newValue ) =>
439
- onCheckboxChange (
440
- id ,
441
- newValue . toString ( )
442
- )
439
+ onCheckboxChange ( id , newValue )
443
440
}
444
441
/>
445
442
) ;
Original file line number Diff line number Diff line change @@ -223,7 +223,7 @@ const CheckboxConditionUnion = Union(
223
223
const CheckboxFilter = BaseFilter . extend ( {
224
224
type : Literal ( CellType . CHECKBOX ) ,
225
225
condition : CheckboxConditionUnion ,
226
- text : String ,
226
+ value : Boolean ,
227
227
} ) ;
228
228
229
229
const TagFilterConditionUnion = Union (
Original file line number Diff line number Diff line change 155
155
"8.15.3" : " 1.4.0" ,
156
156
"8.15.4" : " 1.4.0" ,
157
157
"8.15.5" : " 1.4.0" ,
158
- "8.15.6" : " 1.4.0"
158
+ "8.15.6" : " 1.4.0" ,
159
+ "8.15.7" : " 1.4.0"
159
160
}
You can’t perform that action at this time.
0 commit comments