mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 18:31:52 +00:00
fix casing
This commit is contained in:
committed by
Aiden McClelland
parent
0d9101841c
commit
a272d5d698
@@ -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,
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user