fix casing

This commit is contained in:
Aiden McClelland
2021-08-04 12:47:56 -06:00
committed by Aiden McClelland
parent 0d9101841c
commit a272d5d698
2 changed files with 4 additions and 4 deletions

View File

@@ -85,7 +85,7 @@ export class AppInterfacesItemComponent {
async copy (address: string): Promise<void> {
let message = ''
await copyToClipboard(address || '')
.then(success => { message = success ? 'copied to clipboard!' : 'failed to copy'})
.then(success => { message = success ? 'copied to clipboard!' : 'failed to copy' })
const toast = await this.toastCtrl.create({
header: message,

View File

@@ -3,9 +3,9 @@ import { ServerStatus } from 'src/app/services/patch-db/data-model'
import { PatchDbService } from 'src/app/services/patch-db/patch-db.service'
@Component({
selector: 'Maintenance',
templateUrl: 'Maintenance.page.html',
styleUrls: ['Maintenance.page.scss'],
selector: 'maintenance',
templateUrl: 'maintenance.page.html',
styleUrls: ['maintenance.page.scss'],
})
export class MaintenancePage {
ServerStatus = ServerStatus