aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/jira/index.js
blob: 9fd312d7c30357dc798c6b152187fed5e3b73cd5 (plain) (blame)
1
2
3
4
5
6
7
8
module.exports = (Franz) => class Jira extends Franz {
  overrideUserAgent() {
    return window.navigator.userAgent.replace(
      /(Ferdi|Electron)\/\S+ \([^)]+\)/g,
      '',
    );
  }
};