Commit 230d8fc5 authored by Kyle Horimoto's avatar Kyle Horimoto Committed by Commit Bot

[CrOS Network] Fix layout UI issue on "known networks" settings page.

A refactor [1] introduced use of the <cr-link-row> element, but some of
the contents which were supposed to be within the element itself were
erroneously placed after the </cr-link-row> tag instead.

This CL moves the contents to the correct place and also removes a stray
</div> tag which should not have been there.

[1] https://chromium-review.googlesource.com/c/chromium/src/+/1577594

Bug: 959328
Change-Id: I6f9ae45d1553938fe39b81a8cf32e1b349470084
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1626402
Auto-Submit: Kyle Horimoto <khorimoto@chromium.org>
Reviewed-by: default avatarDemetrios Papadopoulos <dpapad@chromium.org>
Commit-Queue: Kyle Horimoto <khorimoto@chromium.org>
Cr-Commit-Position: refs/heads/master@{#662430}
parent 876609ce
...@@ -42,11 +42,11 @@ ...@@ -42,11 +42,11 @@
indicator-type="[[getIndicatorTypeForSource(item.Source)]]"> indicator-type="[[getIndicatorTypeForSource(item.Source)]]">
</cr-policy-indicator> </cr-policy-indicator>
</template> </template>
<div class="separator"></div>
<cr-icon-button class="icon-more-vert" tabindex$="[[tabindex]]"
on-click="onMenuButtonTap_" title="$i18n{moreActions}">
</cr-icon-button>
</cr-link-row> </cr-link-row>
<div class="separator"></div>
<cr-icon-button class="icon-more-vert" tabindex$="[[tabindex]]"
on-click="onMenuButtonTap_" title="$i18n{moreActions}">
</cr-icon-button>
</div> </div>
</template> </template>
</div> </div>
...@@ -68,12 +68,11 @@ ...@@ -68,12 +68,11 @@
indicator-type="[[getIndicatorTypeForSource(item.Source)]]"> indicator-type="[[getIndicatorTypeForSource(item.Source)]]">
</cr-policy-indicator> </cr-policy-indicator>
</template> </template>
<div class="separator"></div>
<cr-icon-button class="icon-more-vert" tabindex$="[[tabindex]]"
on-click="onMenuButtonTap_" title="$i18n{moreActions}">
</cr-icon-button>
</cr-link-row> </cr-link-row>
</div>
<div class="separator"></div>
<cr-icon-button class="icon-more-vert" tabindex$="[[tabindex]]"
on-click="onMenuButtonTap_" title="$i18n{moreActions}">
</cr-icon-button>
</div> </div>
</template> </template>
</div> </div>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment