Skip to content

Commit

Permalink
Merge pull request #13812 from brave/pr13643_sync_ui_add_device_freez…
Browse files Browse the repository at this point in the history
…e_1.41.x

Reopen sync code dialog when switching desktop <=> mobile (uplift to 1.41.x)
  • Loading branch information
kjozwiak authored Jun 17, 2022
2 parents 860daa5 + e64c2bf commit 790b3b9
Showing 1 changed file with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,11 +90,17 @@ Polymer({
},

handleChooseMobile_: function() {
this.codeType = 'qr'
this.codeType = null
window.setTimeout(() => {
this.codeType = 'qr'
}, 0)
},

handleChooseComputer_: function() {
this.codeType = 'words'
this.codeType = null
window.setTimeout(() => {
this.codeType = 'words'
}, 0)
},

handleSyncCodeCopy_: function() {
Expand Down

0 comments on commit 790b3b9

Please sign in to comment.