Stéphane GUILLY
Stéphane GUILLY
This workaround works for me (angular 11 et ionic 5) : I force to load all possible language in app.components : this.translate.addLangs(['fr', 'en', 'es', 'de']) this.translate.use('en') this.translate.use('es') this.translate.use('de') this.translate.use('fr') then...
@joseph-navant : your tip don't work in my code
Yes, without persistence, i have no issues with the basic example. But i am not able to find a stable config to repair cluster when a container restart My stack...
@Qanah : i don't find a fix. -> Install directly vernemq on the host OS.
If you have several uploads : ``` previewImage(file: any) { const fileReader = new FileReader(); return new Promise(resolve => { fileReader.readAsDataURL(file.nativeFile); fileReader.onload = function(e: any) { resolve(e.target.result); }; }); }...
Use : https://github.com/nteract/ansi-to-react in ScreenMessage const ScreenMessage: React.FC = ({ message, messageFilter }) => { return ( {messageFilter && _parseMessageParts(message, messageFilter).map((part, i) => {part.text} )} {!messageFilter && {message}} ) }...
Same issue as #365
issue start with version 7.4.4 to fix: xss security lib/shared/Configurator.js `div.innerHTML = util.xss(name);` fix in version 7.4.7 by adding an new option : ``` xss: { disabled: true, }, ```...