mirror of
https://github.com/ansible/awx.git
synced 2026-03-11 22:49:32 -02:30
fix issue where adding a search tag could cause an error
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