mirror of
https://github.com/freedbygrace/ActiveDirectoryManager.git
synced 2026-08-21 07:37:32 +00:00
Fix dynamic group attribute definition errors in settings
Replit-Commit-Author: Agent Replit-Commit-Session-Id: 705f2157-ef97-4fbd-89e4-8c7f2ecaea90 Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/7ed01c5f-a82d-405a-b728-b2e3d127c60c/56025d38-b2c7-4725-9e7d-cddfa738d421.jpg
This commit is contained in:
@@ -448,8 +448,8 @@ const ConditionBuilder: React.FC<ConditionBuilderProps> = ({
|
|||||||
<Input
|
<Input
|
||||||
className="mt-1"
|
className="mt-1"
|
||||||
placeholder="Enter custom attribute"
|
placeholder="Enter custom attribute"
|
||||||
value={condition.attribute === 'custom' ? '' : condition.attribute}
|
value={condition.customAttribute || ''}
|
||||||
onChange={(e) => updateCondition(index, 'attribute', e.target.value)}
|
onChange={(e) => updateCondition(index, 'customAttribute', e.target.value)}
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user