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.ts 544B

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