diff --git a/.eslintrc.json b/.eslintrc.json index f8619e178..948db42d1 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -50,7 +50,6 @@ "space-before-function-paren": "off", "standard/no-callback-literal": "off", - "jsx-a11y/no-static-element-interactions": "off", "jsx-a11y/anchor-is-valid": "off", "jsx-a11y/no-autofocus": "off", "jsx-a11y/no-interactive-element-to-noninteractive-role": "off", diff --git a/pkg/storaged/dialog.jsx b/pkg/storaged/dialog.jsx index a3cb18d5e..2fcf42e75 100644 --- a/pkg/storaged/dialog.jsx +++ b/pkg/storaged/dialog.jsx @@ -804,7 +804,7 @@ const StatelessSlider = ({ fraction, onChange }) => { if (fraction > 1) fraction = 1; return ( -
+
diff --git a/pkg/users/index.html b/pkg/users/index.html index 691a71cf0..27276b394 100644 --- a/pkg/users/index.html +++ b/pkg/users/index.html @@ -50,8 +50,8 @@
diff --git a/pkg/users/local.js b/pkg/users/local.js index 797845094..e05ec5586 100755 --- a/pkg/users/local.js +++ b/pkg/users/local.js @@ -287,14 +287,14 @@ class AccountItem extends React.Component { render() { return ( -
+
  • {this.props.gecos.split(',')[0]}
    {this.props.name} {this.props.current && {_("Your account")}}
    -
    +
  • ); } } diff --git a/test/verify/check-multi-machine b/test/verify/check-multi-machine index 165d45963..9f99c9b00 100755 --- a/test/verify/check-multi-machine +++ b/test/verify/check-multi-machine @@ -525,7 +525,7 @@ class TestMultiMachine(MachineCase): b.click('a[href="/@10.111.113.2/users"]') b.enter_page("/users", host="10.111.113.2") b.wait_present("#accounts-list") - b.click("#accounts-list div.cockpit-account:first-child") + b.click("#accounts-list .cockpit-account:first-child") b.wait_text("#account-user-name", "admin") b.switch_to_top() b.wait_js_cond('window.location.pathname == "/cockpit-new/@10.111.113.2/users"')