Skip to content

Commit

Permalink
build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
seiyria committed Apr 29, 2024
1 parent f46f73f commit 2485931
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
/* eslint-disable @typescript-eslint/no-explicit-any */
import { Component, inject, output } from '@angular/core';

import { ActivatedRoute } from '@angular/router';
import { SearchService } from '../../../search.service';

@Component({
Expand All @@ -10,8 +9,7 @@ import { SearchService } from '../../../search.service';
styleUrls: ['./search-cards.component.scss'],
})
export class SearchCardsComponent {
private route = inject(ActivatedRoute);
private searchService = inject(SearchService);
public searchService = inject(SearchService);

public pageChanged = output<number>();

Expand Down
2 changes: 1 addition & 1 deletion src/app/advanced/advanced.page.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<ion-header>
<app-topbar (enter)="search($event)"></app-topbar>
<app-topbar [searchOnEnter]="true"></app-topbar>
</ion-header>

<ion-content>
Expand Down

0 comments on commit 2485931

Please sign in to comment.