Merge pull request #10060 from uberx/issue-6757

Swapping the order of the buttons and icons in round controls
pull/10075/head
Thibault Duplessis 2021-11-03 11:19:22 +01:00 committed by GitHub
commit 4cc3f36fe4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,6 @@ export const renderTablePlay = (ctrl: RoundController) => {
return [
replay.render(ctrl),
h('div.rcontrols', [
...buttons,
h(
'div.ricons',
{
@ -80,6 +79,7 @@ export const renderTablePlay = (ctrl: RoundController) => {
},
icons
),
...buttons,
]),
];
};