diff --git a/CHANGELOG.md b/CHANGELOG.md index 58190c82..36649e5a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,9 @@ - Changes the names from having the flags in their name by adding WIP variable to the `AIRPORT_LOAD_LIST` in `airportLoadList` [#205](https://github.com/n8rzz/atc/issues/205) - Fixes white space in that is displayed from the `AircraftInstanceModel` [#192](https://github.com/n8rzz/atc/issues/192) - Adds cache to travis build [#233](https://github.com/n8rzz/atc/issues/233) +- Fixes white space in that is displayed from the `AircraftInstanceModel` [#192](https://github.com/n8rzz/atc/issues/192) + + ### Bugfixes - Resets current indicies when issuing a new star to an arriving aircraft [#104](https://github.com/n8rzz/atc/issues/104) & [#237](https://github.com/n8rzz/atc/issues/237) diff --git a/src/assets/scripts/client/UiController.js b/src/assets/scripts/client/UiController.js index 7fdfbd86..eb88faef 100644 --- a/src/assets/scripts/client/UiController.js +++ b/src/assets/scripts/client/UiController.js @@ -311,7 +311,7 @@ export default class UiView { `${difficulty}` + `${icao.toUpperCase()}` + `${name}` + - `${flagIcon}` + + ` ${flagIcon}` + ''; }