Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion label_studio/core/feature_flags/stale_feature_flags.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
'fflag_fix_leap_466_text_sanitization': True,
# Dec 29
'fflag_feat_utc_365_include_all_controls_in_agreement': True,
'fflag_feat_all_leap_2042_average_agreement_score_popover': True,
'fflag_feat_all_optic_1811_automax_project_setup_streaming': True,
'fflag_feat_all_leap_1682_plugins_v0': True,
# Dec 31
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ import { useSDK } from "../../../providers/SDKProvider";
import { isDefined } from "../../../utils/utils";
import { useState } from "react";
import { Popover } from "@humansignal/ui";
import { ff } from "@humansignal/core";
import { FF_AVERAGE_AGREEMENT_SCORE_POPOVER } from "../../../utils/feature-flags";

const LOW_AGREEMENT_SCORE = 33;
const MEDIUM_AGREEMENT_SCORE = 66;
Expand All @@ -29,7 +27,7 @@ export const Agreement = (cell) => {
const { value, original: task } = cell;
const sdk = useSDK();
const [content, setContent] = useState(null);
const basePopoverEnabled = window.APP_SETTINGS.billing?.enterprise && ff.isActive(FF_AVERAGE_AGREEMENT_SCORE_POPOVER);
const basePopoverEnabled = window.APP_SETTINGS.billing?.enterprise;

const colId =
(cell && cell.column && typeof cell.column.id === "string" && cell.column.id) ||
Expand Down
5 changes: 0 additions & 5 deletions web/libs/datamanager/src/utils/feature-flags.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,6 @@ export const FF_SELF_SERVE = "fflag_feat_front_leap_482_self_serve_short";
/** Add ability to preview image tasks in Data Manager Grid View */
export const FF_GRID_PREVIEW = "fflag_feat_front_leap_1424_grid_preview_short";

/**
* Add ability to show average agreement score popover in Agreement cell.
*/
export const FF_AVERAGE_AGREEMENT_SCORE_POPOVER = "fflag_feat_all_leap_2042_average_agreement_score_popover";

/**
* Allow to filter tasks in Data Manager by control tag labels used in annotation results
* @link https://app.launchdarkly.com/projects/default/flags/fflag_root_13_annotation_results_filtering
Expand Down
Loading