diff options
Diffstat (limited to 'ext/bg/js/settings/profile-controller.js')
| -rw-r--r-- | ext/bg/js/settings/profile-controller.js | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/ext/bg/js/settings/profile-controller.js b/ext/bg/js/settings/profile-controller.js index 286ce006..aa74b419 100644 --- a/ext/bg/js/settings/profile-controller.js +++ b/ext/bg/js/settings/profile-controller.js @@ -298,7 +298,7 @@ class ProfileController {          if (profile === null || this.profileCount <= 1) { return; }          this._removeProfileNameElement.textContent = profile.name; -        this._profileRemoveModal.node.dataset.profileIndex = profileIndex; +        this._profileRemoveModal.node.dataset.profileIndex = `${profileIndex}`;          this._profileRemoveModal.setVisible(true);      } |