DiamondLightSource / DiamondLightSource/squid
Make the allowed element range reflect beamline usage
Open
- Dominant language
- TypeScript
- Stars
- 2
- Forks
- 2
- PR merge metrics
- No merged PRs in 30d
Description
```javascript
export const allowedElementSymbols = elements
.filter((e) => {
const n = parseInt(e.Number);
return 1 < n && n < 109;
})
.map((element) => element.Symbol) as [string, ...string[]];
```
Contributor guide
Assessment
This issue has not been assessed yet.