File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
src/Frontend/src/components/configuration Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,8 @@ function formatDate(date: string) {
2929 <div class =" row" >
3030 <h4 >The entries below are the most recent warning and error-level events recorded on the ServiceControl Connector.</h4 >
3131 <div class =" logs-container" >
32- <div class =" row margin-gap hover-highlight" v-for =" log in [...configuration.mass_transit_connector.logs].reverse()" :key =" log.date" >
32+ <div v-if =" configuration.mass_transit_connector.logs.length === 0" >No warning or error logs</div >
33+ <div v-else class =" row margin-gap hover-highlight" v-for =" log in [...configuration.mass_transit_connector.logs].reverse()" :key =" log.date" >
3334 <div class =" col-2" >{{ formatDate(log.date) }}</div >
3435 <div class =" col-1" :class =" `${log.level.toLowerCase()}-color`" >{{ log.level }}</div >
3536 <div class =" col-9" :class =" `${log.level.toLowerCase()}-color`" >
You can’t perform that action at this time.
0 commit comments