Describe the bug
The renderLabelSelector function in clusterQueueFormatters.ts incorrectly evaluates a nil or undefined label selector as matching all objects.
Currently, the function contains the following check:
if (!selector) {
return 'All namespaces';
}
Describe the bug
The
renderLabelSelectorfunction inclusterQueueFormatters.tsincorrectly evaluates anilorundefinedlabel selector as matching all objects.Currently, the function contains the following check: