Skip to content

Commit

Permalink
fix: DEV-3222: Project list card requests were using wrong FF (#2844)
Browse files Browse the repository at this point in the history
* fix: DEV-3222: Project list card requests were using wrong FF

* Build frontend

Co-authored-by: robot-ci-heartex <robot-ci-heartex@users.noreply.github.com>
  • Loading branch information
bmartel and robot-ci-heartex committed Aug 18, 2022
1 parent 9631d42 commit 5bad88d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ node_modules
*.pyc
*.ipynb
__pycache__
.local/

# docs
__generated__
Expand Down
2 changes: 1 addition & 1 deletion label_studio/frontend/dist/react-app/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion label_studio/frontend/dist/react-app/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion label_studio/frontend/src/pages/Projects/Projects.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export const ProjectsPage = () => {

const requestParams = { page, page_size: pageSize };

if (isFF(2575)) {
if (isFF(FF_DEV_2575)) {
requestParams.include = [
'id',
'title',
Expand Down

0 comments on commit 5bad88d

Please sign in to comment.