Skip to content

Commit

Permalink
fix: migration
Browse files Browse the repository at this point in the history
  • Loading branch information
dougfabris committed Jul 19, 2022
1 parent a437539 commit 8d14d5e
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
1 change: 1 addition & 0 deletions apps/meteor/server/startup/migrations/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,5 @@ import './v275';
import './v276';
import './v277';
import './v278';
import './v279';
import './xrun';
9 changes: 9 additions & 0 deletions apps/meteor/server/startup/migrations/v279.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import { addMigration } from '../../lib/migrations';
import { upsertPermissions } from '../../../app/authorization/server/functions/upsertPermissions';

addMigration({
version: 279,
up() {
upsertPermissions();
},
});
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,13 @@ import type { ReactNode, ReactElement } from 'react';
const backdropStyle = css`
position: fixed;
top: 0;
right: 0;
min-width: 276px;
[dir='ltr'] & {
right: 0;
}
[dir='rtl'] & {
left: 0;
}
`;

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

0 comments on commit 8d14d5e

Please sign in to comment.