Skip to content

Commit

Permalink
upped version of core for linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Fortunka committed Feb 17, 2025
1 parent f398b0e commit a5eedd4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion core/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.12.2"
__version__ = "0.12.3"
4 changes: 2 additions & 2 deletions ui/app/src/components/workspaces/WorkspaceUsersAssignNew.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ export const WorkSpaceUsersAssignNew: React.FunctionComponent<WorkspaceUsersAssi
const [hasAssignmentError, setHasAssignmentError] = useState(false);
const [assignmentError, setAssignmentError] = useState({} as APIError);

const onUserChange = (event: any) => {
setSelectedUser(event ? event.target.value : null);
const onUserChange = (event: any, option: any) => {
setSelectedUser(option ? option.key : null);
};

const onRoleChange = (event: any, option: any) => {
Expand Down

0 comments on commit a5eedd4

Please sign in to comment.