File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,8 @@ outline: deep
13
13
* Implemented: apis should use plurals #183
14
14
* NOTE: rest endpoints and pages use plurals like /users instead of /user now. This is a breaking change. Update your APIs and pages to use plurals.
15
15
* Implemented: page generator should link to parent objects in the statistics section #158
16
- * Implemented useCurrentUser() now has isRole() and isaRole() #202
16
+ * Implemented: useCurrentUser() now has isRole() and isaRole() #202
17
+ * Fixed: Inequality with angle brackets <> doesn't work #199
17
18
18
19
### 2025-01-12
19
20
* Removed pulumi from the project.
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ export const describeListWhere = (event, filter) => {
71
71
}
72
72
const matchColumn = filter . qualifiers . find ( col => col . drizzleColumn . name == key ) ;
73
73
if ( matchColumn ) {
74
- const matchOp = value . toString ( ) . match ( / ^ ( > | < | > = | < = | ! = | < > ) ? ( .+ ) $ / ) ;
74
+ const matchOp = value . toString ( ) . match ( / ^ ( | > = | < = | ! = | < > | > | < ) ? ( .+ ) $ / ) ;
75
75
if ( matchOp ) {
76
76
const data = fixColumnData ( matchColumn , matchOp [ 2 ] ) ;
77
77
switch ( matchOp [ 1 ] ) {
You can’t perform that action at this time.
0 commit comments