EnumList being single as single-valued array to AppScript

I have a bot that triggers when the column Assigned To of type Enum gets changed. This bot runs a AppScript function called assignedToChanged. A bunch of values is passed to this bot, among those is the  column Additional PMs of type EnumList. The problem is that this column is passed as a single-valued array. Example: the column has the values A, B, C; then the script will receive ['A, B, C']. See image below.

maxgonzaga_0-1745326961093.png

What is odd is that I have another bot triggered when the column Additional PMs is updated, and the bot receives the same column as an array of individual values, like this: ['A', 'B', 'C'], which is the behaviour I expected in the situation above.

maxgonzaga_1-1745327079567.png

I would like to know how to make the first bot behave as the second one.

0 2 60
2 REPLIES 2

Something doesn't make sense.  Can you show us the two different Bot's and how you are passing the column as values to the script?

Bot triggered when Assigned To changes.

maxgonzaga_1-1745517119179.pngmaxgonzaga_2-1745517150106.png

 

 

Bot triggered when Additional PMs changes:

maxgonzaga_0-1745517067257.png

maxgonzaga_3-1745517182172.png