inputColour: ThemePalette
parent
17b1abe348
commit
723474d5f7
|
@ -1,5 +1,6 @@
|
||||||
import { HttpErrorResponse } from '@angular/common/http';
|
import { HttpErrorResponse } from '@angular/common/http';
|
||||||
import { Component, EventEmitter, OnDestroy, OnInit, ViewChild } from '@angular/core';
|
import { Component, EventEmitter, OnDestroy, OnInit, ViewChild } from '@angular/core';
|
||||||
|
import { ThemePalette } from '@angular/material/core';
|
||||||
import { MatTable, MatTableDataSource } from '@angular/material/table';
|
import { MatTable, MatTableDataSource } from '@angular/material/table';
|
||||||
import { Subscription } from 'rxjs';
|
import { Subscription } from 'rxjs';
|
||||||
import { takeUntil } from 'rxjs/operators';
|
import { takeUntil } from 'rxjs/operators';
|
||||||
|
@ -19,7 +20,7 @@ export class PagesComponent implements OnInit, OnDestroy {
|
||||||
@ViewChild(MatTable) matTable!: MatTable<Result>;
|
@ViewChild(MatTable) matTable!: MatTable<Result>;
|
||||||
|
|
||||||
gateways!: string[];
|
gateways!: string[];
|
||||||
inputColour = 'primary';
|
inputColour: ThemePalette = 'primary';
|
||||||
ipfs = '';
|
ipfs = '';
|
||||||
ipns = '';
|
ipns = '';
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue