Skip to content
Merged
Changes from 2 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
4 changes: 3 additions & 1 deletion components/segmented/src/segmented.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,9 @@ const SegmentedOption: FunctionalComponent<
payload,
title,
})
: label}
: label
Copy link
Member

Choose a reason for hiding this comment

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

label ?? value
这样吧,只需要考虑 null 或 undefined 就好了

Copy link
Member Author

Choose a reason for hiding this comment

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

可以,已修改

? label
: value}
</div>
</label>
);
Expand Down