Skip to content

Commit 4ecb417

Browse files
committed
update
1 parent 4a6b3ae commit 4ecb417

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

components/gorgias_oauth/actions/update-ticket-field-values/update-ticket-field-values.mjs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,12 @@ export default {
3131
object_type: "Ticket",
3232
},
3333
});
34+
const reservedFields = [
35+
"call_status",
36+
"ai_intent",
37+
];
3438
for (const field of customFields) {
39+
if (reservedFields.includes(field.managed_type)) continue;
3540
const inputType = field?.definition?.input_settings?.input_type;
3641
const dataType = field?.definition?.data_type;
3742
props[field.id] = {

0 commit comments

Comments
 (0)