Skip to content

Commit

Permalink
[ML] Transforms/DFA: Change action button size back to 'xs'.
Browse files Browse the repository at this point in the history
Changes the button size for the actions for transforms and data frame analytics list from s back to xs to be in line with the Anomaly Detection jobs list.
  • Loading branch information
walterra committed Jul 29, 2020
1 parent 0e8c71e commit 3013785
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ export const CloneButton: FC<CloneButtonProps> = ({ isDisabled, onClick }) => {
iconType="copy"
isDisabled={isDisabled}
onClick={onClick}
size="s"
size="xs"
>
{buttonText}
</EuiButtonEmpty>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const DeleteButton: FC<DeleteButtonProps> = ({ isDisabled, item, onClick
iconType="trash"
isDisabled={isDisabled}
onClick={onClick}
size="s"
size="xs"
>
{buttonText}
</EuiButtonEmpty>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const EditButton: FC<EditButtonProps> = ({ isDisabled, onClick }) => {
iconType="pencil"
isDisabled={isDisabled}
onClick={onClick}
size="s"
size="xs"
>
{buttonText}
</EuiButtonEmpty>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export const StartButton: FC<StartButtonProps> = ({
iconType="play"
isDisabled={isDisabled}
onClick={onClick}
size="s"
size="xs"
>
{buttonText}
</EuiButtonEmpty>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export const StopButton: FC<StopButtonProps> = ({ isDisabled, item, onClick }) =
iconType="stop"
isDisabled={isDisabled}
onClick={onClick}
size="s"
size="xs"
>
{buttonText}
</EuiButtonEmpty>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export const ViewButton: FC<ViewButtonProps> = ({ item, isManagementTable }) =>
iconType="visTable"
isDisabled={disabled}
onClick={navigator}
size="s"
size="xs"
>
{buttonText}
</EuiButtonEmpty>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export const CloneButton: FC<CloneActionProps> = ({ itemId }) => {
iconType="copy"
isDisabled={buttonDisabled}
onClick={clickHandler}
size="s"
size="xs"
>
{buttonText}
</EuiButtonEmpty>
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export const DeleteButton: FC<DeleteButtonProps> = ({ items, forceDisable, onCli
iconType="trash"
isDisabled={buttonDisabled}
onClick={() => onClick(items)}
size="s"
size="xs"
>
{buttonText}
</EuiButtonEmpty>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export const EditButton: FC<EditButtonProps> = ({ onClick }) => {
iconType="pencil"
isDisabled={buttonDisabled}
onClick={onClick}
size="s"
size="xs"
>
{buttonText}
</EuiButtonEmpty>
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export const StartButton: FC<StartButtonProps> = ({ items, forceDisable, onClick
iconType="play"
isDisabled={buttonDisabled}
onClick={() => onClick(items)}
size="s"
size="xs"
>
{buttonText}
</EuiButtonEmpty>
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export const StopButton: FC<StopButtonProps> = ({ items, forceDisable }) => {
iconType="stop"
isDisabled={buttonDisabled}
onClick={handleStop}
size="s"
size="xs"
>
{buttonText}
</EuiButtonEmpty>
Expand Down

0 comments on commit 3013785

Please sign in to comment.