1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-07-26 04:28:31 +00:00
* Added: Setting to hide re-runs in the site's side navigation, or to display them faded out to more obviously differentiate them from original live content.
* Added: The `Changelog` will now only display commits with associated releases, by default. Users can optionally display all commits.
* Fixed: The error message when a tool-tip failed to render was not being localized.
* Fixed: Padding for certain metadata elements such as the `Host` button.
* Fixed: The Stream Uptime metadata pop-up not opening in Safari due to the browser's lack of modern JS features.
* Fixed: Tool-tips not working within the FFZ Control Center.
* Fixed: Tool-tip positioning when in Portrait Mode.
* Fixed: The `Current Category` rule type for profiles not matching on directory pages.
This commit is contained in:
SirStendec 2019-10-23 19:30:27 -04:00
parent 3e653c0381
commit 6e93d712bd
10 changed files with 77 additions and 355 deletions

View file

@ -329,7 +329,10 @@ export class Tooltip {
if ( this.options.logger )
this.options.logger.error('Error rendering tooltip content.', err);
inner.textContent = `There was an error showing this tooltip.\n${err}`;
if ( this.options.i18n )
inner.textContent = this.options.i18n.t('tooltip.render-error', 'There was an error rendering this tooltip.\n{err}', {err});
else
inner.textContent = `There was an error rendering this tooltip.\n${err}`;
tip._update();
});