diff --git a/src/mol-plugin-ui/controls/parameters.tsx b/src/mol-plugin-ui/controls/parameters.tsx index fb414d4d11742532ecccc7531107845f4f96c1c0..a0643fe743ab99224b3188ab68617bbeeeaa8c76 100644 --- a/src/mol-plugin-ui/controls/parameters.tsx +++ b/src/mol-plugin-ui/controls/parameters.tsx @@ -240,8 +240,8 @@ function renderSimple(options: { props: ParamProps<any>, state: { showHelp: bool const help = props.param.help ? props.param.help(props.value) : { description: props.param.description, legend: props.param.legend }; - const desc = props.param.description; const hasHelp = help.description || help.legend; + const desc = label + (hasHelp ? '. Click for help.' : ''); return <> <ControlRow className={className}