mirror of https://github.com/rancher/dashboard.git
Merge pull request #3023 from richard-cox/fix-label-label
Fix `Labels & Annotations` tab label
This commit is contained in:
commit
f77b523b8e
|
|
@ -92,7 +92,7 @@ export default {
|
|||
</Tab>
|
||||
<Tab
|
||||
name="labels-and-annotations"
|
||||
:label="t('generic.labelsAndAnnotations')"
|
||||
label-key="generic.labelsAndAnnotations"
|
||||
:weight="-1"
|
||||
>
|
||||
<Labels
|
||||
|
|
|
|||
|
|
@ -131,7 +131,7 @@ export default {
|
|||
<Tab
|
||||
v-if="!isView"
|
||||
name="labels-and-annotations"
|
||||
:label="t('generic.labelsAndAnnotations')"
|
||||
label-key="generic.labelsAndAnnotations"
|
||||
:weight="0"
|
||||
>
|
||||
<Labels
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@ export default {
|
|||
</Tab>
|
||||
<Tab
|
||||
name="labels-and-annotations"
|
||||
:label="t('generic.labelsAndAnnotations')"
|
||||
label-key="generic.labelsAndAnnotations"
|
||||
:weight="7"
|
||||
>
|
||||
<Labels
|
||||
|
|
|
|||
|
|
@ -123,7 +123,7 @@ export default {
|
|||
<Tab
|
||||
v-if="!isView"
|
||||
name="labels-and-annotations"
|
||||
:label="t('generic.labelsAndAnnotations')"
|
||||
label-key="generic.labelsAndAnnotations"
|
||||
:weight="-1"
|
||||
>
|
||||
<Labels
|
||||
|
|
|
|||
|
|
@ -140,7 +140,7 @@ export default {
|
|||
<Tab
|
||||
v-if="!isView"
|
||||
name="labels-and-annotations"
|
||||
:label="t('generic.labelsAndAnnotations')"
|
||||
label-key="generic.labelsAndAnnotations"
|
||||
:weight="0"
|
||||
>
|
||||
<Labels
|
||||
|
|
|
|||
|
|
@ -247,7 +247,7 @@ export default {
|
|||
:hide-sensitive-data="hideSensitiveData"
|
||||
/>
|
||||
</Tab>
|
||||
<Tab name="labels" :label="t('generic.labelsAndAnnotations')">
|
||||
<Tab name="labels" label-key="generic.labelsAndAnnotations">
|
||||
<Labels v-model="value" :mode="mode" />
|
||||
</Tab>
|
||||
</Tabbed>
|
||||
|
|
|
|||
|
|
@ -880,7 +880,7 @@ export default {
|
|||
<Tab v-if="isStatefulSet" :label="t('workload.container.titles.volumeClaimTemplates')" name="volumeClaimTemplates">
|
||||
<VolumeClaimTemplate v-model="spec" :mode="mode" />
|
||||
</Tab>
|
||||
<Tab name="labels" :label="t('generic.labelsAndAnnotations')">
|
||||
<Tab name="labels" label-key="generic.labelsAndAnnotations">
|
||||
<Labels v-model="value" :mode="mode" />
|
||||
<div class="spacer"></div>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue