Skip to content
This repository was archived by the owner on May 13, 2025. It is now read-only.
Merged
Changes from all 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
6 changes: 3 additions & 3 deletions src/pages/Home/CreateStreamModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -300,20 +300,20 @@ const CustomPartitionField = (props: {
<IconInfoCircleFilled className={styles.infoTooltipIcon} stroke={1.4} height={14} width={14} />
</Tooltip>
</Stack>
<Text className={styles.fieldDescription}>Select 3 columns to partition the events</Text>
<Text className={styles.fieldDescription}>Select only 1 column to partition the events</Text>
</Stack>
<TagsInput
placeholder={
props.isStaticSchema
? shouldDisable
? 'Add Columns to the Schema'
: 'Select column from the list'
: 'Add upto 3 columns'
: 'Add only 1 field'
}
data={props.partitionFields}
mt={6}
onChange={(val) => props.onChangeValue('customPartitionFields', val)}
maxTags={3}
maxTags={1}
error={props.error}
/>
</Stack>
Expand Down
Loading