Skip to content

Commit

Permalink
fix: table field name
Browse files Browse the repository at this point in the history
  • Loading branch information
alicanerdurmaz committed Jan 22, 2024
1 parent 8726f15 commit f38fefe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion refine-nextjs/plugins/_base/extend.js
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ module.exports = {
base.blogPostCategoryTableField = `"category"`;
}
} else {
base.blogPostCategoryTableField = `category`;
base.blogPostCategoryTableField = `"category"`;
}

// ## blogPostStatusOptions
Expand Down
2 changes: 1 addition & 1 deletion refine-remix/plugins/_base/extend.js
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ module.exports = {
base.blogPostCategoryTableField = `"category"`;
}
} else {
base.blogPostCategoryTableField = `category`;
base.blogPostCategoryTableField = `"category"`;
}

// ## blogPostStatusOptions
Expand Down

0 comments on commit f38fefe

Please sign in to comment.