mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 12:11:56 +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> {
|
async copy (address: string): Promise<void> {
|
||||||
let message = ''
|
let message = ''
|
||||||
await copyToClipboard(address || '')
|
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({
|
const toast = await this.toastCtrl.create({
|
||||||
header: message,
|
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'
|
import { PatchDbService } from 'src/app/services/patch-db/patch-db.service'
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'Maintenance',
|
selector: 'maintenance',
|
||||||
templateUrl: 'Maintenance.page.html',
|
templateUrl: 'maintenance.page.html',
|
||||||
styleUrls: ['Maintenance.page.scss'],
|
styleUrls: ['maintenance.page.scss'],
|
||||||
})
|
})
|
||||||
export class MaintenancePage {
|
export class MaintenancePage {
|
||||||
ServerStatus = ServerStatus
|
ServerStatus = ServerStatus
|
||||||
|
|||||||
Reference in New Issue
Block a user