run lint
This commit is contained in:
parent
6d4723b5fe
commit
1ce7da6a6f
4 changed files with 35 additions and 20 deletions
|
|
@ -1,22 +1,31 @@
|
|||
<template>
|
||||
<div class="status-dashboard-container">
|
||||
<div class="dashboard-meta">
|
||||
<h2 class="title">Current Status</h2>
|
||||
<h2 class="title">
|
||||
Current Status
|
||||
</h2>
|
||||
<div class="historical-link">
|
||||
Uptime over the past 90 days. <a href="#">View historical uptime.</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="status-banner operational">
|
||||
<svg class="octicon octicon-check" viewBox="0 0 24 24" width="24" height="24" aria-hidden="true" fill="currentColor">
|
||||
<path d="M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2Zm0 1.5a8.5 8.5 0 1 0 0 17 8.5 8.5 0 0 0 0-17Zm4.78 6.28-5.5 5.5a.75.75 0 0 1-1.06 0l-2.5-2.5a.751.751 0 0 1 .018-1.08.75.75 0 0 1 1.042.02L11 13.44l4.97-4.97a.75.75 0 0 1 1.06 1.06Z"></path>
|
||||
<svg
|
||||
class="octicon octicon-check"
|
||||
viewBox="0 0 24 24"
|
||||
width="24"
|
||||
height="24"
|
||||
aria-hidden="true"
|
||||
fill="currentColor"
|
||||
>
|
||||
<path d="M12 2c5.523 0 10 4.477 10 10s-4.477 10-10 10S2 17.523 2 12 6.477 2 12 2Zm0 1.5a8.5 8.5 0 1 0 0 17 8.5 8.5 0 0 0 0-17Zm4.78 6.28-5.5 5.5a.75.75 0 0 1-1.06 0l-2.5-2.5a.751.751 0 0 1 .018-1.08.75.75 0 0 1 1.042.02L11 13.44l4.97-4.97a.75.75 0 0 1 1.06 1.06Z" />
|
||||
</svg>
|
||||
All Systems Operational
|
||||
</div>
|
||||
|
||||
<div class="services-grid">
|
||||
<ServiceCard
|
||||
v-for="service in mockServices"
|
||||
<ServiceCard
|
||||
v-for="service in mockServices"
|
||||
:key="service.id"
|
||||
:name="service.name"
|
||||
:status="service.status"
|
||||
|
|
@ -56,7 +65,7 @@ const serviceNames = [
|
|||
'Sonic & All-Stars Racing Transformed', 'Minecraft: Wii U Edition', 'Fast Racing Neo'
|
||||
]
|
||||
|
||||
//only here until i actually implement health checks, its 6:30am and i havent slept..
|
||||
// only here until i actually implement health checks, its 6:30am and i havent slept..
|
||||
const mockServices = ref(
|
||||
serviceNames.map((name, index) => ({
|
||||
id: index + 1,
|
||||
|
|
@ -144,4 +153,4 @@ const mockServices = ref(
|
|||
gap: 8px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
</style>
|
||||
|
|
|
|||
Loading…
Reference in a new issue