mirror of
https://github.com/traefik/traefik.git
synced 2025-05-29 11:01:24 +00:00
Fix dashboard title for TCP middlewares
This commit is contained in:
parent
2bd60f9e60
commit
a7194e96e0
@ -46,7 +46,7 @@
|
||||
<div v-if="hasMiddlewares" class="col-12 col-md-3 q-mb-lg path-block">
|
||||
<div class="row no-wrap items-center q-mb-lg app-title">
|
||||
<q-icon name="eva-layers"></q-icon>
|
||||
<div class="app-title-label">HTTP Middlewares</div>
|
||||
<div class="app-title-label">{{ middlewareType }}</div>
|
||||
</div>
|
||||
<div class="row items-start q-col-gutter-lg">
|
||||
<div class="col-12 col-md-8">
|
||||
@ -187,6 +187,9 @@ export default {
|
||||
hasTLSConfiguration () {
|
||||
return this.routerByName.item.tls
|
||||
},
|
||||
middlewareType () {
|
||||
return this.$route.meta.protocol.toUpperCase() + ' Middlewares'
|
||||
},
|
||||
routerType () {
|
||||
return this.$route.meta.protocol.toUpperCase() + ' Router'
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user