I want to display a tooltip on an element, like:
<div class="ui item"
data:data-tooltip="Choose the adapter job"
data:data-position="bottom right">
<select id="jobConfigSelect"
class="ui compact dropdown"
onchange={_: Event =>
changeSelectedJobConfig(jobConfigSelect.value))}>
{Constants(jobConfigs.configs.values.map(selJobConfigOption).toSeq: _*)
.map(_.bind)}
</select>
</div>
This gives this strange error:
Without these 2 lines:
data:data-tooltip="Choose the adapter job"
data:data-position="bottom right"
the code runs perfectly.