We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99b312b commit 9806659Copy full SHA for 9806659
tools-public/toolpad/resources/queryAbout.ts
@@ -74,9 +74,13 @@ export async function queryAbout() {
74
const customCity = employee.address.customColumns?.column_1738498855264;
75
const teams = employee.work.custom.field_1680187492413.split(',');
76
let team = teams[0];
77
+ // Prioritize when part of multiple teams rather than picking the first one
78
if (teams.includes('Core')) {
79
team = 'Core';
80
}
81
+ if (teams.includes('X')) {
82
+ team = 'X';
83
+ }
84
if (teams.includes('MUI')) {
85
team = 'MUI';
86
0 commit comments