Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

actions.web.js 554B

123456789101112131415161718
  1. // @flow
  2. import { SHOW_CONNECTION_INFO } from '../base/connection/actionTypes';
  3. export * from './actions.any';
  4. /**
  5. * Sets whether to render the connnection status info into the Popover of the thumbnail or the context menu buttons.
  6. *
  7. * @param {boolean} showConnectionInfo - Whether it should show the connection
  8. * info or the context menu buttons on thumbnail popover.
  9. * @returns {Object}
  10. */
  11. export function renderConnectionStatus(showConnectionInfo: boolean) {
  12. return {
  13. type: SHOW_CONNECTION_INFO,
  14. showConnectionInfo
  15. };
  16. }