Skip to content

Commit

Permalink
Reduce size of payload on /escalate Slack command (#4458)
Browse files Browse the repository at this point in the history
  • Loading branch information
vstpme authored Jun 4, 2024
1 parent 038d78d commit b3a56cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/apps/slack/scenarios/paging.py
Original file line number Diff line number Diff line change
Expand Up @@ -681,7 +681,7 @@ def _create_user_option_groups(
"text": f"{user.name or user.username}",
"emoji": True,
},
"value": make_value({"id": user.pk}, organization),
"value": json.dumps({"id": user.pk}),
}
for user in users
]
Expand Down

0 comments on commit b3a56cd

Please sign in to comment.