Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
12345678910111213141516 |
- // @flow
-
- import { toggleDialog } from '../base/dialog';
-
- import { SecurityDialog } from './components/security-dialog';
-
- /**
- * Action that triggers toggle of the security options dialog.
- *
- * @returns {Function}
- */
- export function toggleSecurityDialog() {
- return function(dispatch: (Object) => Object) {
- dispatch(toggleDialog(SecurityDialog));
- };
- }
|