Skip to content
Snippets Groups Projects
Commit 3ec0a7f1 authored by Xiao Gui's avatar Xiao Gui Committed by xgui3783
Browse files

chore: housekeeping

parent 8d1c66bb
No related branches found
No related tags found
No related merge requests found
......@@ -2,7 +2,7 @@ import { Component, Input, Output, EventEmitter, ChangeDetectionStrategy, HostLi
import { dropdownAnimation } from "./dropdown.animation";
@Component({
selector : 'dropdown',
selector : 'dropdown-component',
templateUrl : './dropdown.template.html',
styleUrls : [
`./dropdown.style.css`
......
......@@ -5,7 +5,7 @@ div[container]
height:0px;
}
dropdown, div[container] > div[searchRegionPopover]
dropdown-component, div[container] > div[searchRegionPopover]
{
margin-left:1em;
height: 2em;
......
......@@ -3,21 +3,21 @@
<img src = "res/image/HBP_Primary_RGB_WhiteText.png" />
</span>
<div container>
<dropdown
<dropdown-component
(itemSelected) = "selectTemplate($event)"
[activeDisplay] = "displayActiveTemplate"
[selectedItem] = "selectedTemplate"
[inputArray] = "loadedTemplates$ | async">
</dropdown>
</dropdown-component>
<dropdown
<dropdown-component
*ngIf = "selectedTemplate"
(itemSelected) = "selectParcellation($event)"
[activeDisplay] = "displayActiveParcellation"
[selectedItem] = "selectedParcellation"
[inputArray] = "selectedTemplate.parcellations">
</dropdown>
</dropdown-component>
<div
*ngIf = "selectedTemplate"
......
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