mirror of
https://github.com/ansible/awx.git
synced 2026-03-08 21:19:26 -02:30
Merge pull request #8476 from jlmitch5/fixSearchLabelBug
fix issue where adding a search tag could cause an error Reviewed-by: https://github.com/apps/softwarefactory-project-zuul
This commit is contained in:
@@ -107,7 +107,7 @@ function Search({
|
||||
} else if (currentSearchColumn?.booleanLabels) {
|
||||
label = currentSearchColumn.booleanLabels[value];
|
||||
}
|
||||
return label.toString();
|
||||
return (label || colKey).toString();
|
||||
};
|
||||
|
||||
const getChipsByKey = () => {
|
||||
|
||||
Reference in New Issue
Block a user