-
Notifications
You must be signed in to change notification settings - Fork 5.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add feature flag customization and astra tracking (#6963)
* Add feature flag customization and astra tracking * [autofix.ci] apply automated fixes * add external url check --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
- Loading branch information
1 parent
a8f4090
commit 9c69d13
Showing
6 changed files
with
78 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
src/frontend/src/customization/components/custom-feature-flag-dialog.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
const CustomFeatureFlagDialog = ({ | ||
isOpen, | ||
setIsOpen, | ||
}: { | ||
isOpen: boolean; | ||
setIsOpen: (isOpen: boolean) => void; | ||
}) => { | ||
return <></>; | ||
}; | ||
|
||
export default CustomFeatureFlagDialog; |
5 changes: 5 additions & 0 deletions
5
src/frontend/src/customization/components/custom-feature-flag-menu-items.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
const CustomFeatureFlagMenuItems = ({ onClick }: { onClick?: () => void }) => { | ||
return <></>; | ||
}; | ||
|
||
export default CustomFeatureFlagMenuItems; |