mirror of
https://github.com/ansible/awx.git
synced 2026-05-11 11:27:36 -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) {
|
} else if (currentSearchColumn?.booleanLabels) {
|
||||||
label = currentSearchColumn.booleanLabels[value];
|
label = currentSearchColumn.booleanLabels[value];
|
||||||
}
|
}
|
||||||
return label.toString();
|
return (label || colKey).toString();
|
||||||
};
|
};
|
||||||
|
|
||||||
const getChipsByKey = () => {
|
const getChipsByKey = () => {
|
||||||
|
|||||||
Reference in New Issue
Block a user