Skip to content

Commit 8026b89

Browse files
committed
fix: 修复tslint
1 parent f331889 commit 8026b89

File tree

1 file changed

+3
-1
lines changed
  • packages/taro-ui/src/components/calendar/ui/date-list

1 file changed

+3
-1
lines changed

packages/taro-ui/src/components/calendar/ui/date-list/index.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,9 @@ export default class AtCalendarList extends React.Component<Props> {
6565
{item.marks && item.marks.length > 0 ? (
6666
<View className='extra-marks'>
6767
{item.marks.map((mark, key) => (
68-
<Text key={key} className='mark' />
68+
<Text key={key} className='mark'>
69+
{mark.value}
70+
</Text>
6971
))}
7072
</View>
7173
) : null}

0 commit comments

Comments
 (0)