We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
{rules.map((rule, index) => ( <div key={index} style={{ marginTop: 10, display: "flex", gap: 10 }}> <SelectInput value={rule.DicomTag} onChange={(e) => updateRule(index, "DicomTag", e.value)} options={Object.values(AutoRoutingRuleDicomTag).map((value) => ({ label: value, value }))} /> <SelectInput value={rule.ValueRepresentation} onChange={(e) => updateRule(index, "ValueRepresentation", e.value)} options={Object.values(AutoRoutingRuleValueRepresentation).map((value) => ({ label: value, value }))} /> <SelectInput value={rule.Condition} onChange={(e) => updateRule(index, "Condition", e.value)} options={Object.values(AutoRoutingRuleCondition).map((value) => ({ label: value, value }))} /> <Input placeholder="Value" value={rule.Value} onChange={(e) => updateRule(index, "Value", e.target.value)} /> <Button color={Colors.danger} onClick={() => removeRule(index)}>-</Button> </div> ))}
Fait un composant Rule qui fait ce travail de render plutot que de tout mettre dans Autorouting Root
The text was updated successfully, but these errors were encountered:
Julien-VIGNAU-ESPINE
No branches or pull requests
Fait un composant Rule qui fait ce travail de render plutot que de tout mettre dans Autorouting Root
The text was updated successfully, but these errors were encountered: