Skip to content

Commit

Permalink
Merge pull request #332 from CCDirectLink/fix-mod-selection
Browse files Browse the repository at this point in the history
Fix the mod selection
  • Loading branch information
2767mr committed Aug 1, 2024
2 parents ce7f7da + bdff25e commit ae8fc12
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Unreleased]
### Fixed
- The currently selected mod is now properly displayed in the settings menu

## [1.8.0] 2024-08-01
### Added
- Added overrideable JSON configs, see [#327](https://github.com/CCDirectLink/crosscode-map-editor/pull/327) for more details
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<mat-label>Mod</mat-label>
<mat-select [(value)]="mod" (selectionChange)="modSelectEvent($event.value)">
<mat-option>None</mat-option>
<mat-option *ngFor="let mod of mods" [value]="mod.id" [appColoredText]="mod.displayName"></mat-option>
<mat-option *ngFor="let mod of mods" [value]="mod.id"><span [appColoredText]="mod.displayName"></span></mat-option>
</mat-select>
<mat-hint>Maps will be stored and loaded from the selected mod</mat-hint>
</mat-form-field>
Expand Down

0 comments on commit ae8fc12

Please sign in to comment.