Skip to content
Snippets Groups Projects
Unverified Commit 0f5f8f7a authored by xgui3783's avatar xgui3783 Committed by GitHub
Browse files

Merge pull request #1277 from FZJ-INM1-BDA/bugfix_expressRegionSearch

bugfix:express region search, updated deps
parents 4b254f4c 7dfa276a
No related branches found
No related tags found
No related merge requests found
This diff is collapsed.
# v2.8.1
## Behind the scenes
- Updated dependencies
## Bugfix
- Mini region search on Enter no longer resets the page
...@@ -33,6 +33,7 @@ nav: ...@@ -33,6 +33,7 @@ nav:
- Fetching datasets: 'advanced/datasets.md' - Fetching datasets: 'advanced/datasets.md'
- Display non-atlas volumes: 'advanced/otherVolumes.md' - Display non-atlas volumes: 'advanced/otherVolumes.md'
- Release notes: - Release notes:
- v2.8.1: 'releases/v2.8.1.md'
- v2.8.0: 'releases/v2.8.0.md' - v2.8.0: 'releases/v2.8.0.md'
- v2.7.7: 'releases/v2.7.7.md' - v2.7.7: 'releases/v2.7.7.md'
- v2.7.6: 'releases/v2.7.6.md' - v2.7.6: 'releases/v2.7.6.md'
......
This diff is collapsed.
{ {
"name": "interactive-viewer", "name": "interactive-viewer",
"version": "2.8.0", "version": "2.8.1",
"description": "siibra-explorer - explore brain atlases. Based on humanbrainproject/nehuba & google/neuroglancer. Built with angular", "description": "siibra-explorer - explore brain atlases. Based on humanbrainproject/nehuba & google/neuroglancer. Built with angular",
"scripts": { "scripts": {
"lint": "eslint src --ext .ts", "lint": "eslint src --ext .ts",
......
<form class="sxplr-custom-cmp text sxplr-w-100"> <mat-form-field
<mat-form-field class="sxplr-w-100"
class="sxplr-w-100" floatLabel="never">
floatLabel="never"> <input
<input placeholder="Search for regions"
placeholder="Search for regions" [value]="currentSearch"
[value]="currentSearch" #trigger="matAutocompleteTrigger"
#trigger="matAutocompleteTrigger" type="text"
type="text" matInput
matInput name="searchTerm"
name="searchTerm" [attr.aria-label]="ARIA_LABELS.TEXT_INPUT_SEARCH_REGION"
[attr.aria-label]="ARIA_LABELS.TEXT_INPUT_SEARCH_REGION" [formControl]="searchFormControl"
[formControl]="searchFormControl" [matAutocomplete]="auto">
[matAutocomplete]="auto">
<!-- search input suffix -->
<!-- search input suffix --> <div matSuffix iav-stop="click">
<div matSuffix iav-stop="click"> <ng-content select="[search-input-suffix]"></ng-content>
<ng-content select="[search-input-suffix]"></ng-content> </div>
</div>
</mat-form-field>
</mat-form-field>
</form>
<mat-autocomplete <mat-autocomplete
panelWidth="auto" panelWidth="auto"
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment