diff --git a/source/components/conversation/conversation.css b/source/components/conversation/conversation.css index 78c3a10c6..9fc6a1d3c 100644 --- a/source/components/conversation/conversation.css +++ b/source/components/conversation/conversation.css @@ -302,7 +302,7 @@ margin-left: 0.3em; } -.select-answer.commune { +.select-answer { flex: 1; } .select-answer.commune .Select { diff --git a/source/components/conversation/select/SelectTauxRisque.js b/source/components/conversation/select/SelectTauxRisque.js index 9943080cb..ee1935485 100644 --- a/source/components/conversation/select/SelectTauxRisque.js +++ b/source/components/conversation/select/SelectTauxRisque.js @@ -40,7 +40,7 @@ export default FormDecorator('select')(function Select(props) { const [options, setOptions] = useState(null) useEffect(() => { fetch( - 'hthttps://raw.githubusercontent.com/betagouv/taux-collectifs-cotisation-atmp/master/taux-2019.json' + 'https://raw.githubusercontent.com/betagouv/taux-collectifs-cotisation-atmp/master/taux-2019.json' ) .then(response => { if (!response.ok) { @@ -59,11 +59,7 @@ export default FormDecorator('select')(function Select(props) { return (
- +
) })