File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
frontend/web/components/segments/Rule/components Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 11import React , { useMemo } from 'react'
2+ import classNames from 'classnames'
23import Input from 'components/base/forms/Input'
34import Icon from 'components/Icon'
45import Utils from 'common/utils/utils'
@@ -63,6 +64,7 @@ const RuleConditionValueInput: React.FC<RuleConditionValueInputProps> = ({
6364 onSelectionChange = { ( selectedValues : string [ ] ) => {
6465 onChange ?.( JSON . stringify ( selectedValues ) )
6566 } }
67+ placeholder = 'Select environments...'
6668 options = { environmentOptions }
6769 className = 'w-100'
6870 />
@@ -101,7 +103,7 @@ const RuleConditionValueInput: React.FC<RuleConditionValueInputProps> = ({
101103 const isDarkMode = getDarkMode ( )
102104
103105 return (
104- < div className = { ` relative ${ className } ` } >
106+ < div className = { classNames ( ' relative' , className ) } >
105107 < Input
106108 type = 'text'
107109 data-test = { props [ 'data-test' ] }
You can’t perform that action at this time.
0 commit comments