Skip to content

Commit

Permalink
EPMRPP-88958 || Tooltip is missing when Service Analyzer is not runni…
Browse files Browse the repository at this point in the history
…ng (#3719)

* EPMRPP-88958 || Tooltip is missing when Service Analyzer is not running

* EPMRPP-88958 || add width for fields

* EPMRPP-88958 || Code Review fix - 1
  • Loading branch information
BlazarQSO authored Jan 12, 2024
1 parent 5ce1bb4 commit e4a9079
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions app/src/componentLibrary/checkbox/checkbox.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ const DARK_VARIANT = 'dark';

export const Checkbox = ({
children,
title,
disabled,
onChange,
onFocus,
Expand Down Expand Up @@ -61,6 +62,7 @@ export const Checkbox = ({
onFocus={onFocus}
onBlur={onBlur}
data-automation-id={dataAutomationId}
title={title}
>
<input
ref={inputRef}
Expand All @@ -86,6 +88,7 @@ export const Checkbox = ({
};
Checkbox.propTypes = {
variant: PropTypes.oneOf([LIGHT_VARIANT, DARK_VARIANT]),
title: PropTypes.string,
children: PropTypes.node,
value: PropTypes.bool,
disabled: PropTypes.bool,
Expand All @@ -98,6 +101,7 @@ Checkbox.propTypes = {
Checkbox.defaultProps = {
variant: LIGHT_VARIANT,
children: '',
title: '',
value: false,
disabled: false,
onChange: () => {},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@ export const AnalyzerContainer = ({ setHeaderNodes }) => {
onFormSubmit={updateProjectConfig}
hasPermission={hasPermission}
isAnalyzerServiceAvailable={isAnalyzerServiceAvailable}
analyzerUnavailableTitle={analyzerUnavailableTitle}
/>
),
},
Expand Down

0 comments on commit e4a9079

Please sign in to comment.