Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/2696/Adjust width of mat select panel to fit every length of file name #2697

Merged
merged 3 commits into from
Mar 1, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/)

## [unreleased] (Added 🚀 | Changed | Removed 🗑 | Fixed 🐞 | Chore 👨‍💻 👩‍💻)

### Fixed 🐞

- Fix removing maps with long file names [#2696](https://github.com/MaibornWolff/codecharta/pull/2697)

## [1.92.0] - 2022-03-01

### Changed
Expand Down
@@ -1,5 +1,5 @@
<mat-select
class="standard-select"
panelClass="file-select"
[(ngModel)]="selectedFileNames"
(selectionChange)="handleSelectedFilesChanged(selectedFileNames)"
name="recentFiles"
Expand Down
@@ -1,3 +1,9 @@
.file-select {
&.mat-select-panel {
max-width: max-content;
}
}

.filenames {
.mat-option-text {
display: flex;
Expand Down