Browse Source
Fix: Add placeholder if no monitors to add
pull/466/head
Nelson Chan
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
0 deletions
-
src/pages/StatusPage.vue
|
|
@ -181,6 +181,9 @@ |
|
|
|
<option v-for="monitor in allMonitorList" :key="monitor.id" :value="monitor">{{ monitor.name }}</option> |
|
|
|
</select> |
|
|
|
</div> |
|
|
|
<div v-else class="text-center"> |
|
|
|
{{ $t("No monitors available.") }} <router-link to="/add">{{ $t("Add one") }}</router-link> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
|
|
|
|