Skip to content

Commit

Permalink
Merge master and fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
bisht-richa committed Jan 28, 2025
1 parent a9f5488 commit e22eedb
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions web/html/src/manager/systems/bootstrap/bootstrap-minions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -325,8 +325,8 @@ class BootstrapMinions extends React.Component<Props, State> {
var errMessage =
xhr.status === 0
? t(
"Request interrupted or invalid response received from the server. Please check if your minion was bootstrapped correctly."
)
"Request interrupted or invalid response received from the server. Please check if your minion was bootstrapped correctly."
)
: Network.errorMessageByStatus(xhr.status);
this.setState({
success: false,
Expand Down Expand Up @@ -398,12 +398,7 @@ class BootstrapMinions extends React.Component<Props, State> {
disabled={this.state.privKeyLoading}
action={this.onBootstrap}
/>,
<AsyncButton
id="clear-btn"
defaultType="btn-default"
text={t("Clear fields")}
action={this.clearFields}
/>,
<AsyncButton id="clear-btn" defaultType="btn-default" text={t("Clear fields")} action={this.clearFields} />,
];

const productName = window._IS_UYUNI ? "Uyuni" : "SUSE Manager";
Expand Down

0 comments on commit e22eedb

Please sign in to comment.