You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. }