Commit a683a0f8 authored by Justin Ho's avatar Justin Ho

Fix labelFilterParam value in issuable_list_root

When set as `null`, the `labelFilterParam` passed from
issuable_list_root.vue to issuable_item.vue does not
fallback to the default value of `label_name`. Instead,
we should use `undefined` so the prop falls back properly.

This bug affects test_case_list_root.vue used in Test
cases list and epics_list_root.vue used in Epics list
(behind a feature flag vue_epics_list).

Changelog: fixed
EE: true
parent b929874f
......@@ -134,7 +134,7 @@ export default {
labelFilterParam: {
type: String,
required: false,
default: null,
default: undefined,
},
isManualOrdering: {
type: Boolean,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment