Skip to content

Commit

Permalink
fix: minor ui tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
jakeaturner committed Aug 16, 2024
1 parent a7ae914 commit 9567276
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ const AddUserOrgModal: React.FC<AddUserOrgModalProps> = ({
const [loading, setLoading] = useState(false);
const [availableOrgs, setAvailableOrgs] = useState<CentralIdentityOrg[]>([]);
const [orgToAdd, setOrgToAdd] = useState<number | undefined>(undefined);
const [searchInput, setSearchInput] = useState(""); // For search input

// Effects
useEffect(() => {
Expand Down Expand Up @@ -115,7 +114,6 @@ const AddUserOrgModal: React.FC<AddUserOrgModalProps> = ({
search

onSearchChange={(_e, { searchQuery }) => {
setSearchInput(searchQuery);
debouncedSearch(searchQuery);
}}
selection
Expand Down
4 changes: 2 additions & 2 deletions client/src/components/projects/ProjectPropertiesModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1127,7 +1127,7 @@ const ProjectPropertiesModal: React.FC<ProjectPropertiesModalProps> = ({
</div>
<div>
<label className="form-field-label" htmlFor="selectSourceLicenseName">
Name
License Name
</label>
<Controller
render={({ field }) => (
Expand Down Expand Up @@ -1157,7 +1157,7 @@ const ProjectPropertiesModal: React.FC<ProjectPropertiesModalProps> = ({
className="form-field-label form-required"
htmlFor="selectSourceLicenseVersion"
>
Version
License Version
</label>
<Controller
render={({ field }) => (
Expand Down

0 comments on commit 9567276

Please sign in to comment.