Skip to content

Commit

Permalink
fix: show falsy values in identity overrides (#3144)
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewelwell authored Dec 12, 2023
1 parent c94eeeb commit 68cfd15
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion frontend/web/components/modals/CreateFlag.js
Original file line number Diff line number Diff line change
Expand Up @@ -1442,7 +1442,8 @@ const CreateFlag = class extends Component {
className='table-column'
style={{ width: '188px' }}
>
{feature_state_value && (
{feature_state_value !==
null && (
<FeatureValue
value={
feature_state_value
Expand Down

3 comments on commit 68cfd15

@vercel
Copy link

@vercel vercel bot commented on 68cfd15 Dec 12, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on 68cfd15 Dec 12, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on 68cfd15 Dec 12, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

docs – ./docs

docs.flagsmith.com
docs-git-main-flagsmith.vercel.app
docs-flagsmith.vercel.app
docs.bullet-train.io

Please sign in to comment.