Skip to content

Commit 8d14d5e

Browse files
committed
fix: migration
1 parent a437539 commit 8d14d5e

3 files changed

Lines changed: 16 additions & 1 deletion

File tree

apps/meteor/server/startup/migrations/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,5 @@ import './v275';
3737
import './v276';
3838
import './v277';
3939
import './v278';
40+
import './v279';
4041
import './xrun';
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import { addMigration } from '../../lib/migrations';
2+
import { upsertPermissions } from '../../../app/authorization/server/functions/upsertPermissions';
3+
4+
addMigration({
5+
version: 279,
6+
up() {
7+
upsertPermissions();
8+
},
9+
});

packages/ui-video-conf/src/VideoConfPopup/VideoConfPopupBackdrop.tsx

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,13 @@ import type { ReactNode, ReactElement } from 'react';
55
const backdropStyle = css`
66
position: fixed;
77
top: 0;
8-
right: 0;
98
min-width: 276px;
9+
[dir='ltr'] & {
10+
right: 0;
11+
}
12+
[dir='rtl'] & {
13+
left: 0;
14+
}
1015
`;
1116

1217
const VideoConfPopupBackdrop = ({ children }: { children: ReactNode }): ReactElement => (

0 commit comments

Comments
 (0)