fix(yaml): remove create message on edit views [EE-5356] (#10254)

Co-authored-by: testa113 <testa113>
pull/10183/head
Ali 2023-09-06 23:29:25 +02:00 committed by GitHub
parent 4a39122415
commit 6a8ff7c076
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 5 additions and 5 deletions

View File

@ -247,7 +247,7 @@
<div class="flex-center gap-1"> <pr-icon icon="'code'" size="'sm'"></pr-icon> YAML </div>
</uib-tab-heading>
<div style="padding-right: 25px" ng-if="ctrl.state.showEditorTab">
<kube-yaml-inspector identifier="'node-yaml'" data="ctrl.node.Yaml" />
<kube-yaml-inspector identifier="'node-yaml'" data="ctrl.node.Yaml" hide-message="true" />
</div>
</uib-tab>
</uib-tabset>

View File

@ -75,7 +75,7 @@
YAML
</uib-tab-heading>
<div class="px-5 !pt-5" ng-if="ctrl.state.showEditorTab">
<kube-yaml-inspector identifier="'configuration-yaml'" data="ctrl.configuration.Yaml" />
<kube-yaml-inspector identifier="'configuration-yaml'" data="ctrl.configuration.Yaml" hide-message="true" />
</div>
</uib-tab>
</uib-tabset>

View File

@ -82,7 +82,7 @@
YAML
</uib-tab-heading>
<div class="px-5 !pt-5" ng-if="ctrl.state.showEditorTab">
<kube-yaml-inspector identifier="'secret-yaml'" data="ctrl.configuration.Yaml" />
<kube-yaml-inspector identifier="'secret-yaml'" data="ctrl.configuration.Yaml" hide-message="true" />
</div>
</uib-tab>
</uib-tabset>

View File

@ -306,7 +306,7 @@
<uib-tab index="2" ng-if="ctrl.pool.Yaml" select="ctrl.showEditor()" classes="btn-sm">
<uib-tab-heading class="vertical-center"><pr-icon icon="'code'"></pr-icon> YAML </uib-tab-heading>
<div class="px-5" ng-if="ctrl.state.showEditorTab">
<kube-yaml-inspector identifier="'namespace-yaml'" data="ctrl.pool.Yaml" />
<kube-yaml-inspector identifier="'namespace-yaml'" data="ctrl.pool.Yaml" hide-message="true" />
</div>
</uib-tab>
</uib-tabset>

View File

@ -164,7 +164,7 @@
<uib-tab index="2" ng-if="ctrl.volume.PersistentVolumeClaim.Yaml" select="ctrl.showEditor()" classes="btn-sm">
<uib-tab-heading class="vertical-center" data-cy="k8sVolDetail-volYamlTab"> <pr-icon icon="'code'"></pr-icon> YAML </uib-tab-heading>
<div class="px-5" ng-if="ctrl.state.showEditorTab">
<kube-yaml-inspector identifier="'volume-yaml'" data="ctrl.volume.PersistentVolumeClaim.Yaml" />
<kube-yaml-inspector identifier="'volume-yaml'" data="ctrl.volume.PersistentVolumeClaim.Yaml" hide-message="true" />
</div>
</uib-tab>
</uib-tabset>