added missing overflow to revealed passwords

This commit is contained in:
antelle 2021-03-21 17:38:36 +01:00
parent 8c59838a6f
commit 259abf6d25
No known key found for this signature in database
GPG Key ID: 63C9777AAB7C563C
1 changed files with 2 additions and 0 deletions

View File

@ -49,6 +49,8 @@ const PasswordPresenter = {
const topEl = document.createElement('div');
topEl.style.display = 'flex';
topEl.style.overflow = 'hidden';
topEl.style.textOverflow = 'ellipsis';
for (const item of items) {
const el = document.createElement('div');