mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-02 22:17:03 +03:00
removed default export
This commit is contained in:
parent
b5114fa73a
commit
06b5b83588
18 changed files with 22 additions and 64 deletions
|
|
@ -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 };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue