From b3ee8c94907a49f38528a0c1dba558f52fa79f10 Mon Sep 17 00:00:00 2001 From: Ilia Orlov <66363651+illfixit@users.noreply.github.com> Date: Mon, 11 Mar 2024 15:09:32 +0100 Subject: [PATCH] chore: change order of industry select options (#28) --- CHANGELOG.md | 1 + .../form-elements/industry-select/industry-select.component.ts | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f807a7946..d5b309a8c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,7 @@ please see [changelog_updates.md](docs/dev/changelog_updates.md). - Removed internal tools and utilities - Rebased the entire history to remove secrets and unrelated code - Cleaned up dead links +- Changed order of industry select options [#22](https://github.com/sovity/authority-portal/issues/22) ### Known issues diff --git a/authority-portal-frontend/src/app/common/components/form-elements/industry-select/industry-select.component.ts b/authority-portal-frontend/src/app/common/components/form-elements/industry-select/industry-select.component.ts index 67813c218..071242a07 100644 --- a/authority-portal-frontend/src/app/common/components/form-elements/industry-select/industry-select.component.ts +++ b/authority-portal-frontend/src/app/common/components/form-elements/industry-select/industry-select.component.ts @@ -10,7 +10,6 @@ * Contributors: * sovity GmbH - initial implementation */ - import {Component, HostBinding, Input} from '@angular/core'; import {FormControl} from '@angular/forms'; @@ -49,7 +48,6 @@ export class IndustrySelectComponent { 'Meteorological services', 'Micromobility provider', 'Municipality', - 'Other', 'Passenger transportation', 'Research & Development', 'Sensor supplier', @@ -57,5 +55,6 @@ export class IndustrySelectComponent { 'Telecommunication', 'Tourism', 'Traffic engineering', + 'Other', ]; }