Skip to content

Commit

Permalink
fix(front): change icon
Browse files Browse the repository at this point in the history
  • Loading branch information
clabroche committed Feb 14, 2024
1 parent 65457a2 commit b012ab7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions fronts/app/src/components/sidebarItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
:class="{active: isActive, disabled: !service.enabled, crashed: service.crashed}">
<span>
<template v-if="service.crashed"><i class="fas fa-exclamation"></i></template>
<template v-else-if="service.enabled && !service.exited"><spinner size="15"></spinner> </template>
<template v-else-if="service.enabled && !service.exited"><i class="fas fa-heartbeat success"></i></template>
<template v-else-if="service.exited"><i class="fas fa-times warning"></i> </template>
<template v-else><i class="fas fa-square"></i></template>
{{service.label}}
Expand All @@ -16,7 +16,6 @@
<script setup>
import { computed } from 'vue';
import { useRouter } from 'vue-router';
import Spinner from '../components/Spinner.vue'
const router = useRouter()
const props = defineProps({
Expand Down Expand Up @@ -75,5 +74,8 @@ const isActive = computed(() => {
.warning {
color: orange;
}
.success {
color: green;
}
}
</style>
2 changes: 1 addition & 1 deletion servers/server/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline

## [1.17.26](https://github.com/clabroche/stack-monitor/compare/v1.17.25...v1.17.26) (2024-02-14)

### Bug Fixes
### Bug Fixes

* **server:** healthcheck working ([13d2960](https://github.com/clabroche/stack-monitor/commit/13d2960ffa5125aff7792d95a9306fe6e04d2889))
* **server:** resolve dependencies ([7a15ef0](https://github.com/clabroche/stack-monitor/commit/7a15ef01ba9946fb2662c0f15a6da758f0c40280))
Expand Down

0 comments on commit b012ab7

Please sign in to comment.