diff --git a/src/registrar/admin.py b/src/registrar/admin.py index 46f6cc68c..43be92ec2 100644 --- a/src/registrar/admin.py +++ b/src/registrar/admin.py @@ -1114,7 +1114,7 @@ class SeniorOfficialAdmin(ListHeaderAdmin): # NOTE: these are just placeholders. Not part of ACs (haven't been defined yet). Update in future tickets. search_fields = ["first_name", "last_name", "email"] search_help_text = "Search by first name, last name or email." - list_display = ["first_name", "last_name", "email"] + list_display = ["first_name", "last_name", "email", "federal_agency"] # this ordering effects the ordering of results # in autocomplete_fields for Senior Official diff --git a/src/registrar/management/commands/load_senior_official_table.py b/src/registrar/management/commands/load_senior_official_table.py index ad5d051ab..c49fa67e4 100644 --- a/src/registrar/management/commands/load_senior_official_table.py +++ b/src/registrar/management/commands/load_senior_official_table.py @@ -35,7 +35,7 @@ class Command(BaseCommand): Note: - If the row is missing SO data - it will not be added. - - Given we can add the row, a blank first_name will be replaced with "-" + - Given we can add the row, any blank first_name will be replaced with "-". """, prompt_title="Do you wish to load records into the SeniorOfficial table?", )