Skip to content
Merged
Changes from all 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
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@ export class PdsDropdownMenuItem implements BasePdsProps {
* This is a simpler alternative to using `target="_blank"` for the common case.
* @defaultValue false
*/
@Prop() external: boolean = false;
@Prop({ reflect: true }) external: boolean = false;

/**
* Specifies where to open the linked document when href is provided.
* Takes precedence over the `external` prop if both are set.
* Only applies when href is set.
* @defaultValue undefined
*/
@Prop() target?: '_blank' | '_self' | '_parent' | '_top';
@Prop({ reflect: true }) target?: '_blank' | '_self' | '_parent' | '_top';

/**
* Emitted when the dropdown-item is clicked.
Expand Down
Loading