From 78ad7e6c803502ff0eab178a19030e4505c115e7 Mon Sep 17 00:00:00 2001 From: Cody Jackson Date: Fri, 11 Oct 2024 07:39:05 -0700 Subject: [PATCH] Fixing more warnings around having the 'emits' component prop Looks like these got missed in the original cleanup. I'm guessing these were missed because they were in mixins so I went through all of the mixins and found a couple more that were missed. https://github.com/rancher/dashboard/issues/12130 --- shell/mixins/labeled-form-element.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/shell/mixins/labeled-form-element.ts b/shell/mixins/labeled-form-element.ts index 3127eec5791..073fe519af0 100644 --- a/shell/mixins/labeled-form-element.ts +++ b/shell/mixins/labeled-form-element.ts @@ -10,6 +10,8 @@ interface LabeledFormElement { export default { inheritAttrs: false, + emits: ['update:validation', 'on-focus', 'on-blur'], + props: { mode: { type: String,