File tree Expand file tree Collapse file tree 1 file changed +15
-5
lines changed
shell/edit/networking.k8s.io.networkpolicy Expand file tree Collapse file tree 1 file changed +15
-5
lines changed Original file line number Diff line number Diff line change @@ -149,25 +149,35 @@ export default {
149149 },
150150 watch: {
151151 namespace: {
152- handler: ' debouncedUpdateMatches' ,
152+ handler () {
153+ this .debouncedUpdateMatches ();
154+ },
153155 immediate: true
154156 },
155157 ' value.podSelector' : {
156- handler: ' debouncedUpdateMatches' ,
158+ handler () {
159+ this .debouncedUpdateMatches ();
160+ },
157161 immediate: true
158162 },
159163 ' value.namespaceSelector' : {
160- handler: ' debouncedUpdateMatches' ,
164+ handler () {
165+ this .debouncedUpdateMatches ();
166+ },
161167 immediate: true
162168 },
163169 ' value.ipBlock.cidr' : ' validateCIDR' ,
164170 ' value.ipBlock.except' : ' validateCIDR' ,
165171 podSelectorExpressions: {
166- handler: ' debouncedUpdateMatches' ,
172+ handler () {
173+ this .debouncedUpdateMatches ();
174+ },
167175 immediate: true
168176 },
169177 namespaceSelectorExpressions: {
170- handler: ' debouncedUpdateMatches' ,
178+ handler () {
179+ this .debouncedUpdateMatches ();
180+ },
171181 immediate: true
172182 }
173183 },
You can’t perform that action at this time.
0 commit comments