mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-08-21 12:47:24 +08:00
Feat: Show monitor ID in Details (#4331)
This commit is contained in:
@@ -2,10 +2,18 @@
|
||||
<transition name="slide-fade" appear>
|
||||
<div v-if="monitor">
|
||||
<router-link v-if="group !== ''" :to="monitorURL(monitor.parent)"> {{ group }}</router-link>
|
||||
<h1> {{ monitor.name }}</h1>
|
||||
<h1>
|
||||
{{ monitor.name }}
|
||||
<div class="monitor-id">
|
||||
<div class="hash">#</div>
|
||||
<div>{{ monitor.id }}</div>
|
||||
</div>
|
||||
</h1>
|
||||
<p v-if="monitor.description">{{ monitor.description }}</p>
|
||||
<div class="tags">
|
||||
<Tag v-for="tag in monitor.tags" :key="tag.id" :item="tag" :size="'sm'" />
|
||||
<div class="d-flex">
|
||||
<div class="tags">
|
||||
<Tag v-for="tag in monitor.tags" :key="tag.id" :item="tag" :size="'sm'" />
|
||||
</div>
|
||||
</div>
|
||||
<p class="url">
|
||||
<a v-if="monitor.type === 'http' || monitor.type === 'keyword' || monitor.type === 'json-query' || monitor.type === 'mp-health' " :href="monitor.url" target="_blank" rel="noopener noreferrer">{{ filterPassword(monitor.url) }}</a>
|
||||
@@ -717,7 +725,7 @@ export default {
|
||||
}
|
||||
|
||||
.word {
|
||||
color: #aaa;
|
||||
color: $secondary-text;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
@@ -731,7 +739,7 @@ table {
|
||||
|
||||
.stats p {
|
||||
font-size: 13px;
|
||||
color: #aaa;
|
||||
color: $secondary-text;
|
||||
}
|
||||
|
||||
.stats {
|
||||
@@ -802,4 +810,20 @@ table {
|
||||
margin-left: 0 !important;
|
||||
}
|
||||
|
||||
.monitor-id {
|
||||
display: inline-flex;
|
||||
font-size: 0.7em;
|
||||
margin-left: 0.3em;
|
||||
color: $secondary-text;
|
||||
flex-direction: row;
|
||||
flex-wrap: nowrap;
|
||||
|
||||
.hash {
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.dark & {
|
||||
opacity: 0.7;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
Reference in New Issue
Block a user