Skip to content

Commit

Permalink
Merge branch 'release/9.0.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianstein committed Jan 9, 2023
2 parents 6149534 + 76fe04d commit 5895845
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ class Quickselect {
this.settings = {
maxOptions: null,
searchField: ['text', 'keywords'],
onDropdownOpen: function() {
this.clear(); // prevents the "preselect" bug of firefox 106
},
onItemAdd: function(value, item) {
let url = item.getAttribute('data-url');

Expand Down Expand Up @@ -40,7 +43,6 @@ class Quickselect {

init() {
this.tomSelect = new TomSelect(this.in2studyfinderContainer.querySelector(this.identifier.select), this.settings);
this.tomSelect.clear();
}

update(studyfinderContainer) {
Expand Down
2 changes: 1 addition & 1 deletion Resources/Public/JavaScript/main.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
'author' => 'Sebastian Stein',
'author_email' => 'sebastian.stein@in2code.de',
'state' => 'stable',
'version' => '9.0.2',
'version' => '9.0.3',
'constraints' => [
'depends' => [
'typo3' => '11.5.0-11.5.99',
Expand Down
1 change: 1 addition & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,7 @@ ddev ssh

| Version | Date | State | Description |
|---------|------------|--------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| 9.0.3 | 2023-01-09 | BUGFIX | Minor bugfixes, for further information see: [Commits](https://github.com/in2code-de/in2studyfinder/commits/9.0.3) |
| 9.0.2 | 2023-01-09 | BUGFIX | Minor bugfixes, for further information see: [Commits](https://github.com/in2code-de/in2studyfinder/commits/9.0.2) |
| 9.0.1 | 2022-11-28 | BUGFIX | Minor bugfixes, for further information see: [Commits](https://github.com/in2code-de/in2studyfinder/commits/9.0.1) |
| 9.0.0 | 2022-11-22 | [!!!]FEATURE | Add PHP8 support, add php code quality tools, complete javascript overhaul (no requirement of jQuery anymore) see [Migration from 8 to 9](./Documentation/Migration/8to9.md) for further information |
Expand Down

0 comments on commit 5895845

Please sign in to comment.