mirror of https://github.com/rancher/ui.git
guard against undefined values when accessing entities in azureDescriptions
This commit is contained in:
parent
6b005ce32f
commit
be18e1caa4
|
|
@ -258,9 +258,11 @@
|
|||
/>
|
||||
{{/if}}
|
||||
</label>
|
||||
<p class="help-block mt-0">
|
||||
{{t (get (get azureDescriptions answer.key) "description") htmlSafe=true}}
|
||||
</p>
|
||||
{{#if (get azureDescriptions answer.key)}}
|
||||
<p class="help-block mt-0">
|
||||
{{t (get (get azureDescriptions answer.key) "description") htmlSafe=true}}
|
||||
</p>
|
||||
{{/if}}
|
||||
</div>
|
||||
<div class="col span-6">
|
||||
<CheckOverrideAllowed
|
||||
|
|
|
|||
Loading…
Reference in New Issue