Skip to content

Commit

Permalink
[FIX] UI KIT Modal Width (#17697)
Browse files Browse the repository at this point in the history
  • Loading branch information
ggazzo authored May 20, 2020
1 parent dbcaacc commit a517991
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion app/ui-message/client/blocks/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
import { HTML } from 'meteor/htmljs';

import { createTemplateForComponent } from '../../../../client/reactAdapters';

createTemplateForComponent('ModalBlock', () => import('./ModalBlock'));
createTemplateForComponent('ModalBlock', () => import('./ModalBlock'), {
// eslint-disable-next-line new-cap
renderContainerView: () => HTML.DIV({ class: 'rc-multiselect', style: 'display: flex; width:100%;' }),
});

createTemplateForComponent('Blocks', () => import('./MessageBlock'));

0 comments on commit a517991

Please sign in to comment.