File tree 2 files changed +3
-1
lines changed
packages/host/app/components
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -243,6 +243,7 @@ export default class RoomMessageCommand extends Component<Signature> {
243
243
<Preview
244
244
@ card ={{this .commandResultCard.card }}
245
245
@ format =' embedded'
246
+ @ displayContainer ={{ false }}
246
247
data-test-boxel-command-result
247
248
/>
248
249
</CardContainer >
Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ interface Signature {
24
24
field? : Field ;
25
25
codeRef? : ResolvedCodeRef ;
26
26
cardContext? : Record <string , any >;
27
+ displayContainer? : boolean ;
27
28
};
28
29
}
29
30
@@ -46,7 +47,7 @@ export default class Preview extends Component<Signature> {
46
47
}
47
48
48
49
<template >
49
- <this .renderedCard ...attributes />
50
+ <this .renderedCard @ displayContainer = {{ @ displayContainer }} ...attributes />
50
51
</template >
51
52
52
53
get renderedCard() {
You can’t perform that action at this time.
0 commit comments