您最多选择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. }