Skip to content

Commit

Permalink
FIX: Vue3 => Error info when creating NavLink is not shown to user (r…
Browse files Browse the repository at this point in the history
…ancher#11956)

* fix issue with error on create not showing to user

* revert div added + add inheritAttrs: false to fix navlink error not showing
  • Loading branch information
aalves08 authored Oct 21, 2024
1 parent 2944e11 commit fe45dad
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions shell/edit/ui.cattle.io.navlink.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ const LINK_TARGET_BLANK = '_blank';
const LINK_TARGET_SELF = '_self';
export default {
emits: ['update:value.spec.iconSrc ', 'input'],
mixins: [CreateEditView, FormValidation],
components: {
emits: ['update:value.spec.iconSrc ', 'input'],
mixins: [CreateEditView, FormValidation],
inheritAttrs: false,
components: {
CruResource,
LabeledInput,
RadioGroup,
Expand Down

0 comments on commit fe45dad

Please sign in to comment.