mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
ca28b6995b
[web] Review panel gotoEntry GitOrigin-RevId: b08ba8d8539751ea43f6c1a72d4e2043f02bb83c
7 lines
296 B
TypeScript
7 lines
296 B
TypeScript
import { ReactScopeValueStore } from '@/features/ide-react/scope-value-store/react-scope-value-store'
|
|
|
|
export default function populateReviewPanelScope(store: ReactScopeValueStore) {
|
|
store.set('users', {})
|
|
store.set('reviewPanel.layoutToLeft', false)
|
|
store.set('addNewComment', () => {})
|
|
}
|