From a0fba816c237d25224735ec89cd0763b5c07a6b7 Mon Sep 17 00:00:00 2001 From: zandercymatics <141044360+zandercymatics@users.noreply.github.com> Date: Fri, 1 Mar 2024 13:31:01 -0700 Subject: [PATCH] PR suggestions --- src/registrar/assets/sass/_theme/_admin.scss | 5 ----- src/registrar/utility/errors.py | 2 +- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/src/registrar/assets/sass/_theme/_admin.scss b/src/registrar/assets/sass/_theme/_admin.scss index b57c6a015..7f332efd2 100644 --- a/src/registrar/assets/sass/_theme/_admin.scss +++ b/src/registrar/assets/sass/_theme/_admin.scss @@ -275,11 +275,6 @@ h1, h2, h3, } } -// Hides the "clear" button on autocomplete, as we already have one to use -.select2-selection__clear { - display: none; -} - // Fixes a display issue where the list was entirely white, or had too much whitespace .select2-dropdown { display: inline-grid !important; diff --git a/src/registrar/utility/errors.py b/src/registrar/utility/errors.py index f5804ac2f..00c65ce57 100644 --- a/src/registrar/utility/errors.py +++ b/src/registrar/utility/errors.py @@ -94,7 +94,7 @@ class FSMApplicationError(Exception): _error_mapping = { FSMErrorCodes.APPROVE_DOMAIN_IN_USE: ("Cannot approve. Requested domain is already in use."), - FSMErrorCodes.NO_INVESTIGATOR: ("No investigator was assigned."), + FSMErrorCodes.NO_INVESTIGATOR: ("Investigator is required for this status."), FSMErrorCodes.INVESTIGATOR_NOT_STAFF: ("Investigator is not a staff user."), FSMErrorCodes.INVESTIGATOR_NOT_SUBMITTER: ("Only the assigned investigator can make this change."), }