Added room selector property

This commit is contained in:
Ilya Oleshko 2023-04-18 10:07:59 +03:00
parent 905378cdd9
commit ca5ab6cf2b
2 changed files with 6 additions and 7 deletions

View File

@ -6,13 +6,7 @@ import RoomSelector from "../../components/RoomSelector";
import SelectFolderDialog from "../../components/panels/SelectFolderDialog";
const Selector = ({ theme }) => {
return (
<SelectFolderDialog
isPanelVisible={true}
displayType="modal"
header={null}
/>
);
return <RoomSelector />;
};
export default inject(({ auth }) => {

View File

@ -101,6 +101,11 @@
break;
}
case "room selector": {
path = `/selector`;
break;
}
case "editor": {
path = `/doceditor/?fileId=${config.fileId}&type=${config.editorType}`;
break;