Skip to content

Commit

Permalink
set default file upload filter to mxl extension
Browse files Browse the repository at this point in the history
  • Loading branch information
hall committed Jun 18, 2023
1 parent 442617c commit 47e42dd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added

- filter file uploads by `.mxl` extension

## [0.2.0] - 2023-06-15

### Changed
Expand Down
2 changes: 1 addition & 1 deletion src/app/home/home.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
</ion-content>
</ion-menu>

<input class="ion-hide" #f type="file" (change)="loadFiles($event.target.files)" />
<input class="ion-hide" #f type="file" accept=".mxl" (change)="loadFiles($event.target.files)" />

<div class="ion-page" id="main-content">
<ion-header>
Expand Down

0 comments on commit 47e42dd

Please sign in to comment.