removed default export

This commit is contained in:
the-djmaze 2022-02-24 14:01:41 +01:00
parent b5114fa73a
commit 06b5b83588
18 changed files with 22 additions and 64 deletions

View file

@ -27,7 +27,7 @@ const domainToParams = oDomain => ({
OutUsePhpMail: oDomain.smtpPhpMail() ? 1 : 0
});
class DomainPopupView extends AbstractViewPopup {
export class DomainPopupView extends AbstractViewPopup {
constructor() {
super('Domain');
@ -61,7 +61,7 @@ class DomainPopupView extends AbstractViewPopup {
if (this.edit()) {
result = i18n('POPUPS_DOMAIN/TITLE_EDIT_DOMAIN', { NAME: name });
if (aliasName) {
result += ' ' + aliasName;
result += ' ' + aliasName;
}
} else {
result = name
@ -281,5 +281,3 @@ class DomainPopupView extends AbstractViewPopup {
this.enableSmartPorts(true);
}
}
export { DomainPopupView, DomainPopupView as default };