diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-11-19 18:49:30 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-19 18:49:30 -0500 |
commit | 1216926fbdb6b897f4cf9d4cb25d3aaef86707d1 (patch) | |
tree | 36c22b444938fa9d4606ccc6ab4e466531a93917 /ext/bg/js/context-main.js | |
parent | e5255a03e68574afecced794f8092bf76ec241a3 (diff) |
Hide profile button if only one profile exists (#1045)
Diffstat (limited to 'ext/bg/js/context-main.js')
-rw-r--r-- | ext/bg/js/context-main.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/bg/js/context-main.js b/ext/bg/js/context-main.js index e7cff04c..93eebe72 100644 --- a/ext/bg/js/context-main.js +++ b/ext/bg/js/context-main.js @@ -42,6 +42,8 @@ class DisplayController { this._setupOptions(primaryProfile); } + document.querySelector('.action-select-profile').hidden = (profiles.length <= 1); + this._updateProfileSelect(profiles, profileCurrent); setTimeout(() => { |