From cb2f84e551727bd1852ed5fd93777289d3439bbf Mon Sep 17 00:00:00 2001 From: f0x52 Date: Sat, 11 Mar 2023 10:49:44 +0100 Subject: [frontend/fix] Mobile css tweaks (#1605) * mobile css tweaks * bulk process list mobile css --- web/source/settings/components/form/mutation-button.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'web/source/settings/components/form/mutation-button.jsx') diff --git a/web/source/settings/components/form/mutation-button.jsx b/web/source/settings/components/form/mutation-button.jsx index 97bcdf08d..9f0a1eb42 100644 --- a/web/source/settings/components/form/mutation-button.jsx +++ b/web/source/settings/components/form/mutation-button.jsx @@ -21,7 +21,7 @@ const React = require("react"); const { Error } = require("../error"); -module.exports = function MutationButton({ label, result, disabled, showError = true, className = "", ...inputProps }) { +module.exports = function MutationButton({ label, result, disabled, showError = true, className = "", wrapperClassName = "", ...inputProps }) { let iconClass = ""; const targetsThisButton = result.action == inputProps.name; // can also both be undefined, which is correct @@ -33,7 +33,7 @@ module.exports = function MutationButton({ label, result, disabled, showError = } } - return (
+ return (
{(showError && targetsThisButton && result.error) && } -- cgit v1.2.3