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

functions.web.ts 261B

123456789
  1. /**
  2. * Returns the visibility state of the reactions menu.
  3. *
  4. * @param {Object} state - The state of the application.
  5. * @returns {boolean}
  6. */
  7. export function getReactionsMenuVisibility(state: any): boolean {
  8. return state['features/reactions'].visible;
  9. }