aboutsummaryrefslogtreecommitdiffstats
path: root/web_src/js/markup/common.ts
blob: e826c8fd863a9cdecfbba5ca6685ccbcedc1dd9a (plain)
1
2
3
4
5
6
7
8
export function displayError(el: Element, err: Error): void {
  el.classList.remove('is-loading');
  const errorNode = document.createElement('pre');
  errorNode.setAttribute('class', 'ui message error markup-block-error');
  errorNode.textContent = err.message || String(err);
  el.before(errorNode);
  el.setAttribute('data-render-done', 'true');
}