Skip to content

Commit

Permalink
fix(navigation): label is no longer a required property (#7084)
Browse files Browse the repository at this point in the history
**Related Issue:** #7013 

## Summary

This PR will remove `label` as required property from
`calcite-navigation` component.
  • Loading branch information
anveshmekala authored Jun 6, 2023
1 parent a1414d6 commit ba2bd4d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export class CalciteNavigation implements LoadableComponent {
/**
* When `navigationAction` is `true`, specifies the label of the `calcite-action`.
*/
@Prop() label!: string;
@Prop() label: string;

/**
* When `true`, displays a `calcite-action` and emits a `calciteNavActionSelect` event on selection change.
Expand Down

0 comments on commit ba2bd4d

Please sign in to comment.