diff --git a/src/dispatch/plugins/dispatch_slack/fields.py b/src/dispatch/plugins/dispatch_slack/fields.py index 0ffe595c4d47..a5868bb91809 100644 --- a/src/dispatch/plugins/dispatch_slack/fields.py +++ b/src/dispatch/plugins/dispatch_slack/fields.py @@ -619,7 +619,7 @@ def entity_select( ): """Creates an entity select.""" entity_options = [ - {"text": str(entity.value), "value": entity.id} + {"text": entity.entity_type.name[:75], "value": entity.id} for entity in entity_service.get_all_desc_by_signal( db_session=db_session, signal_id=signal_id )