Add forms and hooks for managing error codes and spare parts

This commit is contained in:
2025-11-13 14:22:23 +07:00
parent 08f8c4708f
commit de8f0ba2b6
7 changed files with 1101 additions and 2 deletions

View File

@@ -139,7 +139,10 @@ const SolutionField = ({
icon={<DeleteOutlined />}
onClick={() => onRemove(fieldId)}
disabled={isReadOnly}
style={{ borderColor: '#ff4d4f' }}
style={{
borderColor: '#ff4d4f',
color: '#ff4d4f'
}}
/>
</div>
@@ -161,7 +164,7 @@ const SolutionField = ({
/>
</Form.Item>
<Text style={{ marginLeft: 8 }}>
{(watchedStatus ?? true) ? 'Active' : 'Non Active'}
{(watchedStatus ?? true) ? 'Active' : 'Inactive'}
</Text>
</div>
</Form.Item>