Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 1 addition & 8 deletions core/src/components/radio-group/radio-group.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -353,14 +353,7 @@ export class RadioGroup implements ComponentInterface {
class={mode}
>
{this.renderHintText()}
{/*
TODO(FW-6279): Wrapping the slot in a div is a workaround due to a
Stencil issue. Without the wrapper, the children radio will fire the
blur event on focus, instead of waiting for them to be blurred.
*/}
<div class="radio-group-wrapper">
Comment thread
OS-jacobbell marked this conversation as resolved.
<slot></slot>
</div>
<slot></slot>
</Host>
);
}
Expand Down
3 changes: 2 additions & 1 deletion core/stencil.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,8 @@ export const config: Config = {
dest: 'components',
warn: true
}],
includeGlobalScripts: false
includeGlobalScripts: false,
externalRuntime: false,
},
{
type: 'docs-json',
Expand Down
Loading