Skip to content

Commit

Permalink
minor compilation issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Shay Hadar authored and Shay Hadar committed Dec 12, 2021
1 parent 7da3330 commit fdd1002
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion cloudapp/src/app/catalog/main/main.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ <h2>{{'Catalog.Results.NoRecordsExist' | translate}}</h2>
</div>
<div class="full-view-right-table" (window:resize)="onResize($event)" *ngIf="isRightTableOpen">
<button class="close-button" (click)="onFullViewLinkClose()">
<i class="uxf-icon uxf-close eca-button" aria-label="Delete" (click)="delete(i)"></i>
<i class="uxf-icon uxf-close eca-button" aria-label="Close"></i>
</button>
<div *ngIf="resultFullLinkDisplay != null else noResults">
<full-view-display [resultFullDisplay]="resultFullLinkDisplay">
Expand Down
24 changes: 12 additions & 12 deletions cloudapp/src/app/catalog/main/main.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,28 +50,28 @@ export class CatalogMainComponent implements AfterViewInit {
private linkSearchType: SearchType;

// UI variables
private panelState: boolean = true;
private loading: boolean = false;
private isRightTableOpen: boolean = false;
private isColapsedMode: boolean = true;
public panelState: boolean = true;
public loading: boolean = false;
public isRightTableOpen: boolean = false;
public isColapsedMode: boolean = true;

// Search variables
private catalogResultsData: NacsisCatalogResults;
private numOfResults: number;
private pageIndex: number = 0;
private pageSize: number = 20;
public numOfResults: number;
public pageIndex: number = 0;
public pageSize: number = 20;

// Display variables
private resultsSummaryDisplay: Array<IDisplayLines>;
private resultFullDisplay;
private resultFullLinkDisplay;
public resultsSummaryDisplay: Array<IDisplayLines>;
public resultFullDisplay;
public resultFullLinkDisplay;

// Templates
@ViewChild('notSearched') notSearchedTmpl:TemplateRef<any>;
@ViewChild('searchResults') searchResultsTmpl:TemplateRef<any>;
@ViewChild('noResults') noResultsTmpl:TemplateRef<any>;
@ViewChild('fullRecord') fullRecordTmpl:TemplateRef<any>;
private currentResulsTmpl: TemplateRef<any>;
public currentResulsTmpl: TemplateRef<any>;


constructor(
Expand Down Expand Up @@ -216,7 +216,7 @@ export class CatalogMainComponent implements AfterViewInit {

/*** Summary View Section ***/

private getActionMenu() {
public getActionMenu() {
return this.ACTIONS_MENU_LIST.get(this.currentSearchType);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ export class ResultCardComponent implements OnInit {
@Input() resultActionList: Array<string> = new Array();
@Output() onActionSelected = new EventEmitter<RecordSelection>();
@Output() onTitleSelected = new EventEmitter<number>();
private titleDisplay: Array<ViewField>;
private contentDisplay: Array<ViewLine>;
public titleDisplay: Array<ViewField>;
public contentDisplay: Array<ViewLine>;


constructor() { }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export class ResultsListComponent implements OnChanges, AfterViewInit {
@Output() onPageSelected = new EventEmitter<PageEvent>();

@ViewChild(MatPaginator) paginator: MatPaginator;
private recordIndex: number;
public recordIndex: number;


constructor() { }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export class SearchFormComponent implements OnChanges {
@Input() databasesList: Array<string> = new Array();
@Input() fieldsList: Array<SearchField> = new Array();
@Output() selectedDatabase = new EventEmitter<string>();
private defaultDatabase ;
public defaultDatabase ;

constructor() { }

Expand Down

0 comments on commit fdd1002

Please sign in to comment.