Collection Redesign (#500)
* Setup UI for the collection redesign. * Implemented collection details page
This commit is contained in:
parent
226d7408bf
commit
51ea41fc35
16 changed files with 289 additions and 42 deletions
|
|
@ -105,7 +105,7 @@ export class EditCollectionTagsComponent implements OnInit {
|
|||
}
|
||||
|
||||
close() {
|
||||
this.modal.close(false);
|
||||
this.modal.dismiss();
|
||||
}
|
||||
|
||||
async save() {
|
||||
|
|
@ -135,7 +135,7 @@ export class EditCollectionTagsComponent implements OnInit {
|
|||
|
||||
get someSelected() {
|
||||
const selected = this.selections.selected();
|
||||
return (selected.length != this.series.length && selected.length != 0);
|
||||
return (selected.length !== this.series.length && selected.length !== 0);
|
||||
}
|
||||
|
||||
updateSelectedIndex(index: number) {
|
||||
|
|
|
|||
|
|
@ -38,7 +38,7 @@ import { CardDetailsModalComponent } from './_modals/card-details-modal/card-det
|
|||
],
|
||||
imports: [
|
||||
CommonModule,
|
||||
BrowserModule,
|
||||
//BrowserModule,
|
||||
RouterModule,
|
||||
ReactiveFormsModule,
|
||||
FormsModule, // EditCollectionsModal
|
||||
|
|
@ -48,7 +48,6 @@ import { CardDetailsModalComponent } from './_modals/card-details-modal/card-det
|
|||
|
||||
NgbNavModule,
|
||||
NgbTooltipModule, // Card item
|
||||
//NgbAccordionModule,
|
||||
NgbCollapseModule,
|
||||
|
||||
NgbNavModule, //Series Detail
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue