Tiny fixes
This commit is contained in:
parent
3468447f81
commit
f8b683a611
1
bigbluebutton-html5/imports/ui/components/nav-bar/container.jsx
Normal file → Executable file
1
bigbluebutton-html5/imports/ui/components/nav-bar/container.jsx
Normal file → Executable file
@ -59,7 +59,6 @@ export default withRouter(withTracker(({ location, router }) => {
|
||||
breakouts,
|
||||
currentUserId,
|
||||
meetingId,
|
||||
getBreakoutJoinURL: Service.getBreakoutJoinURL,
|
||||
presentationTitle: meetingTitle,
|
||||
hasUnreadMessages: checkUnreadMessages(),
|
||||
isBreakoutRoom: meetingIsBreakout(),
|
||||
|
@ -1,6 +1,6 @@
|
||||
import Breakouts from '/imports/api/breakouts';
|
||||
|
||||
const getBreakouts = () => Breakouts.find().fetch().sort((a, b) => a.sequence > b.sequence);
|
||||
const getBreakouts = () => Breakouts.find({}, { sort: { sequence: 1 } }).fetch();
|
||||
|
||||
export default {
|
||||
getBreakouts,
|
||||
|
Loading…
Reference in New Issue
Block a user