Skip to content

Commit 272c0c7

Browse files
authored
fix: lint for field.column (#4482)
1 parent bd902ff commit 272c0c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web/filterAST/toFilterNode.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ const operatorMap: Record<string, string> = {
3535
* This includes both explicitly marked properties and keys that follow property naming conventions
3636
*/
3737
function isPropertyField(field: FieldSpec): boolean {
38-
if (field.column === "helicone-score-feedback") {
38+
if (String(field.column) === "helicone-score-feedback") {
3939
return false;
4040
}
4141

0 commit comments

Comments
 (0)