Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: allow 1 custom partition field in stream creation #442

Merged
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