mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-15 20:24:51 +08:00
a60ffc06e1
Avoid empty commands Small fixes
12 lines
399 B
JavaScript
12 lines
399 B
JavaScript
|
|
import {view, ViewType} from 'Knoin/Knoin';
|
|
import {AbstractSystemDropDownUserView} from 'View/User/AbstractSystemDropDown';
|
|
|
|
@view({
|
|
name: 'View/User/Settings/SystemDropDown',
|
|
type: ViewType.Right,
|
|
templateID: 'SystemDropDown'
|
|
})
|
|
class SystemDropDownSettingsUserView extends AbstractSystemDropDownUserView {}
|
|
|
|
export {SystemDropDownSettingsUserView, SystemDropDownSettingsUserView as default};
|