show the internal error text in icon tooltip

This commit is contained in:
tophf 2021-02-13 12:12:09 +03:00
parent b52c36f9fb
commit ccc875b3cc

View File

@ -223,7 +223,12 @@ const syncMan = (() => {
return {
text: 'x',
color: '#F00',
title: !status.login ? 'syncErrorRelogin' : 'syncError',
title: !status.login ? 'syncErrorRelogin' : `${
chrome.i18n.getMessage('syncError')
}\n---------------------\n${
// splitting to limit each line length
lastError.message.replace(/.{60,}?\s(?=.{30,})/g, '$&\n')
}`,
};
}
}