From d6a6ff5ecab654606a9c097338dba8056b183028 Mon Sep 17 00:00:00 2001 From: Tainan Felipe <tainanf@imdt.com.br> Date: Wed, 11 Oct 2017 14:54:00 -0300 Subject: [PATCH] remove .scss extension and changed path --- .../imports/api/2.0/users/server/modifiers/clearUsers.js | 2 +- bigbluebutton-html5/imports/ui/components/media/component.jsx | 2 +- .../imports/ui/components/modal/simple/component.jsx | 2 +- .../imports/ui/components/nav-bar/component.jsx | 2 +- .../ui/components/nav-bar/recording-indicator/component.jsx | 2 +- .../components/settings/submenus/participants/component.jsx | 2 +- .../ui/components/settings/submenus/video/component.jsx | 2 +- .../imports/ui/components/user-avatar/component.jsx | 2 +- .../imports/ui/components/video-dock/component.jsx | 4 ++-- 9 files changed, 10 insertions(+), 10 deletions(-) diff --git a/bigbluebutton-html5/imports/api/2.0/users/server/modifiers/clearUsers.js b/bigbluebutton-html5/imports/api/2.0/users/server/modifiers/clearUsers.js index 10a817b39b..faa8e907e2 100644 --- a/bigbluebutton-html5/imports/api/2.0/users/server/modifiers/clearUsers.js +++ b/bigbluebutton-html5/imports/api/2.0/users/server/modifiers/clearUsers.js @@ -1,5 +1,5 @@ import Logger from '/imports/startup/server/logger'; -import Users from './../../'; +import Users from '/imports/api/2.0/users/index'; const clearUsers = (meetingId) => { if (meetingId) { diff --git a/bigbluebutton-html5/imports/ui/components/media/component.jsx b/bigbluebutton-html5/imports/ui/components/media/component.jsx index c431576923..9ad9c6b798 100644 --- a/bigbluebutton-html5/imports/ui/components/media/component.jsx +++ b/bigbluebutton-html5/imports/ui/components/media/component.jsx @@ -1,6 +1,6 @@ import React, { Component } from 'react'; import PropTypes from 'prop-types'; -import styles from './styles.scss'; +import styles from './styles'; const propTypes = { content: PropTypes.element.isRequired, diff --git a/bigbluebutton-html5/imports/ui/components/modal/simple/component.jsx b/bigbluebutton-html5/imports/ui/components/modal/simple/component.jsx index a36431489f..6791ecacfa 100644 --- a/bigbluebutton-html5/imports/ui/components/modal/simple/component.jsx +++ b/bigbluebutton-html5/imports/ui/components/modal/simple/component.jsx @@ -3,7 +3,7 @@ import PropTypes from 'prop-types'; import cx from 'classnames'; import Button from '/imports/ui/components/button/component'; import ModalBase, { withModalState } from '../base/component'; -import styles from './styles.scss'; +import styles from './styles'; const propTypes = { title: PropTypes.string.isRequired, diff --git a/bigbluebutton-html5/imports/ui/components/nav-bar/component.jsx b/bigbluebutton-html5/imports/ui/components/nav-bar/component.jsx index 7e2b93d2a9..c01a93cc46 100644 --- a/bigbluebutton-html5/imports/ui/components/nav-bar/component.jsx +++ b/bigbluebutton-html5/imports/ui/components/nav-bar/component.jsx @@ -11,7 +11,7 @@ import DropdownList from '/imports/ui/components/dropdown/list/component'; import DropdownListItem from '/imports/ui/components/dropdown/list/item/component'; import { withModalMounter } from '/imports/ui/components/modal/service'; import { defineMessages, injectIntl } from 'react-intl'; -import styles from './styles.scss'; +import styles from './styles'; import Button from '../button/component'; import RecordingIndicator from './recording-indicator/component'; import SettingsDropdownContainer from './settings-dropdown/container'; diff --git a/bigbluebutton-html5/imports/ui/components/nav-bar/recording-indicator/component.jsx b/bigbluebutton-html5/imports/ui/components/nav-bar/recording-indicator/component.jsx index 55101f7208..834f5f875d 100644 --- a/bigbluebutton-html5/imports/ui/components/nav-bar/recording-indicator/component.jsx +++ b/bigbluebutton-html5/imports/ui/components/nav-bar/recording-indicator/component.jsx @@ -1,5 +1,5 @@ import React from 'react'; -import styles from './styles.scss'; +import styles from './styles'; /* export default class RecordingIndicator extends Component { constructor(props) { diff --git a/bigbluebutton-html5/imports/ui/components/settings/submenus/participants/component.jsx b/bigbluebutton-html5/imports/ui/components/settings/submenus/participants/component.jsx index fb530fe3b5..779ac5cd5a 100644 --- a/bigbluebutton-html5/imports/ui/components/settings/submenus/participants/component.jsx +++ b/bigbluebutton-html5/imports/ui/components/settings/submenus/participants/component.jsx @@ -5,7 +5,7 @@ import cx from 'classnames'; import { defineMessages, injectIntl } from 'react-intl'; import _ from 'lodash'; import BaseMenu from '../base/component'; -import styles from '../styles.scss'; +import styles from '../styles'; const intlMessages = defineMessages({ participantsTitle: { diff --git a/bigbluebutton-html5/imports/ui/components/settings/submenus/video/component.jsx b/bigbluebutton-html5/imports/ui/components/settings/submenus/video/component.jsx index 126daab6a2..4db656f01b 100644 --- a/bigbluebutton-html5/imports/ui/components/settings/submenus/video/component.jsx +++ b/bigbluebutton-html5/imports/ui/components/settings/submenus/video/component.jsx @@ -3,7 +3,7 @@ import Toggle from '/imports/ui/components/switch/component'; import cx from 'classnames'; import { defineMessages, injectIntl } from 'react-intl'; import BaseMenu from '../base/component'; -import styles from '../styles.scss'; +import styles from '../styles'; const intlMessages = defineMessages({ videoSectionTitle: { diff --git a/bigbluebutton-html5/imports/ui/components/user-avatar/component.jsx b/bigbluebutton-html5/imports/ui/components/user-avatar/component.jsx index 8e267a8086..7201a52a2a 100644 --- a/bigbluebutton-html5/imports/ui/components/user-avatar/component.jsx +++ b/bigbluebutton-html5/imports/ui/components/user-avatar/component.jsx @@ -2,7 +2,7 @@ import React from 'react'; import PropTypes from 'prop-types'; import cx from 'classnames'; -import styles from './styles.scss'; +import styles from './styles'; const propTypes = { children: PropTypes.node.isRequired, diff --git a/bigbluebutton-html5/imports/ui/components/video-dock/component.jsx b/bigbluebutton-html5/imports/ui/components/video-dock/component.jsx index a8db560256..fcd9e12dbd 100644 --- a/bigbluebutton-html5/imports/ui/components/video-dock/component.jsx +++ b/bigbluebutton-html5/imports/ui/components/video-dock/component.jsx @@ -1,6 +1,6 @@ -import React, { Component } from 'react'; +import React from 'react'; import ScreenshareContainer from '/imports/ui/components/screenshare/container'; -import styles from './styles.scss'; +import styles from './styles'; const VideoDock = () => ( <div className={styles.videoDock}> -- GitLab