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 2909fee commit 4897858Copy full SHA for 4897858
redisinsight/ui/src/components/inline-item-editor/InlineItemEditor.tsx
@@ -140,7 +140,7 @@ const InlineItemEditor = (props: Props) => {
140
const isDisabledApply = (): boolean =>
141
!!(isLoading || isError || isDisabled || (disableEmpty && !value.length))
142
143
- const ApplyBtn = () => (
+ const ApplyBtn = (
144
<EuiToolTip
145
anchorClassName={styles.tooltip}
146
position="bottom"
@@ -218,7 +218,7 @@ const InlineItemEditor = (props: Props) => {
218
isDisabled={isLoading}
219
data-testid="cancel-btn"
220
/>
221
- <ApplyBtn />
+ {ApplyBtn}
222
</div>
223
</EuiForm>
224
</EuiFocusTrap>
0 commit comments