Fix display of unicode operators in RelationalOperatorField

This commit is contained in:
Florian Rival
2019-11-24 17:22:53 +01:00
parent 0883c86d0e
commit 59b6694316

View File

@@ -31,12 +31,9 @@ export default class RelationalOperatorField extends Component<ParameterFieldPro
<SelectOption value="=" primaryText={t`= (equal to)`} />
<SelectOption value="<" primaryText={t`< (less than)`} />
<SelectOption value=">" primaryText={t`> (greater than)`} />
<SelectOption value="<=" primaryText={t`\u2264 (less or equal to)`} />
<SelectOption
value=">="
primaryText={t`\u2265 (greater or equal to)`}
/>
<SelectOption value="!=" primaryText={t`\u2260 (not equal to)`} />
<SelectOption value="<=" primaryText={t` (less or equal to)`} />
<SelectOption value=">=" primaryText={t`≥ (greater or equal to)`} />
<SelectOption value="!=" primaryText={t`≠ (not equal to)`} />
</SelectField>
);
}