From 353f4c38f172f9357ca228985d435c5e2b147ebc Mon Sep 17 00:00:00 2001 From: sOckhamSter <4546972+sOckhamSter@users.noreply.github.com> Date: Sun, 27 Jun 2021 17:11:15 +0100 Subject: [PATCH 1/3] Update config_views.py Corrected help text to advise using the country code GB for United Kingdom, instead of EN for England which does not work. --- web/config_views.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/config_views.py b/web/config_views.py index b454240..78fc63f 100644 --- a/web/config_views.py +++ b/web/config_views.py @@ -61,7 +61,7 @@ config_layout = dbc.Row(dbc.Col(className="col-md-12 col-lg-2 ml-2", children=[ placeholder="Enter your country code", ), dbc.FormText( - "Example: FR for FRANCE or EN for England", + "Example: FR for FRANCE or GB for United Kingdom", color="secondary", ) ] @@ -180,4 +180,4 @@ def finishOtp(n_clicks, code_pin, sms_code): # pylint: disable=unused-argument except Exception as e: res = str(e) return dbc.Alert(res, color="danger") - raise PreventUpdate() \ No newline at end of file + raise PreventUpdate() From 74ad7caa7a1d0b52a39eb2d1639658954681f257 Mon Sep 17 00:00:00 2001 From: Florian BEZANNIER <48728684+flobz@users.noreply.github.com> Date: Mon, 28 Jun 2021 13:56:35 +0200 Subject: [PATCH 2/3] Update can-t-get-car-model.md --- .github/ISSUE_TEMPLATE/can-t-get-car-model.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/can-t-get-car-model.md b/.github/ISSUE_TEMPLATE/can-t-get-car-model.md index 36f3261..5b5f479 100644 --- a/.github/ISSUE_TEMPLATE/can-t-get-car-model.md +++ b/.github/ISSUE_TEMPLATE/can-t-get-car-model.md @@ -6,7 +6,7 @@ labels: Car_model assignees: '' --- - + I have a "Can't get car model" error. Information to add my car model to the app: - Brand: From 174a3c384d0e7e443a6ec659c6836147acd80946 Mon Sep 17 00:00:00 2001 From: Florian BEZANNIER <48728684+flobz@users.noreply.github.com> Date: Tue, 29 Jun 2021 15:08:29 +0200 Subject: [PATCH 3/3] Fix typo --- web/config_views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/config_views.py b/web/config_views.py index 78fc63f..ef3cdd9 100644 --- a/web/config_views.py +++ b/web/config_views.py @@ -23,7 +23,7 @@ config_layout = dbc.Row(dbc.Col(className="col-md-12 col-lg-2 ml-2", children=[ options=[ {"label": "Peugeot", "value": "com.psa.mym.mypeugeot"}, {"label": "Opel", "value": "com.psa.mym.myopel"}, - {"label": "Cirtroën", "value": "com.psa.mym.citroen"}, + {"label": "Citroën", "value": "com.psa.mym.citroen"}, {"label": "DS", "value": "com.psa.mym.myds"}, {"label": "Vauxhall", "value": "com.psa.mym.myvauxhll"} ],