mirror of
https://github.com/google/nomulus.git
synced 2025-05-21 11:49:37 +02:00
Fix mismatched parenthesis in domain.soy
The code stopped working after a recent soy-to-js compiler change. Impacts include: - The /registrar#domain page only shows part of the contents. - RegistrarConsoleScreenshotTest times out. ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=204135349
This commit is contained in:
parent
0223cea8cc
commit
7f0665783b
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@
|
|||
</button>
|
||||
</th>
|
||||
</tr>
|
||||
{if isNonnull($item['domain:ns'] and isNonnull($item['domain:ns']['domain:hostObj']))}
|
||||
{if isNonnull($item['domain:ns']) and isNonnull($item['domain:ns']['domain:hostObj'])}
|
||||
{for $hostObj in $item['domain:ns']['domain:hostObj']}
|
||||
{let $hostIdx: index($hostObj) /}
|
||||
{call registry.soy.forms.inputFieldRowWithValue data="all"}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue