We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f331889 commit 8026b89Copy full SHA for 8026b89
packages/taro-ui/src/components/calendar/ui/date-list/index.tsx
@@ -65,7 +65,9 @@ export default class AtCalendarList extends React.Component<Props> {
65
{item.marks && item.marks.length > 0 ? (
66
<View className='extra-marks'>
67
{item.marks.map((mark, key) => (
68
- <Text key={key} className='mark' />
+ <Text key={key} className='mark'>
69
+ {mark.value}
70
+ </Text>
71
))}
72
</View>
73
) : null}
0 commit comments