Skip to content

Commit

Permalink
Impl [Project settings] Need an option to delete project from project…
Browse files Browse the repository at this point in the history
… settings
  • Loading branch information
ilan7empest committed Oct 20, 2024
1 parent f250805 commit 64ecc67
Show file tree
Hide file tree
Showing 4 changed files with 301 additions and 158 deletions.
7 changes: 6 additions & 1 deletion src/common/Input/Input.js
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,7 @@ const Input = React.forwardRef(
<input
data-testid={id ? `${id}-input` : 'input'}
className={inputClassNames}
name={id}
onBlur={handleInputBlur}
onChange={handleInputChange}
onFocus={handleInputFocus}
Expand All @@ -240,7 +241,11 @@ const Input = React.forwardRef(
type,
value: typedValue
}}
style={floatingLabel ? {} : { paddingLeft: `${labelWidth + 16}px`, paddingRight: tip ? '25px' : '0px' }}
style={
floatingLabel
? {}
: { paddingLeft: `${labelWidth + 16}px`, paddingRight: tip ? '25px' : '0px' }
}
/>
{label && (
<div className={labelClassNames}>
Expand Down
1 change: 1 addition & 0 deletions src/elements/ChangeOwnerPopUp/ChangeOwnerPopUp.js
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,7 @@ const ChangeOwnerPopUp = ({ changeOwnerCallback, projectId }) => {
<Input
density="dense"
onChange={onSearchChange}
id="owner"
placeholder="Type to select new owner..."
ref={searchInputRef}
type="text"
Expand Down
Loading

0 comments on commit 64ecc67

Please sign in to comment.