Update ds100 js

This commit is contained in:
Laura Hausmann 2021-06-21 21:59:21 +02:00
parent 46e6e78891
commit 4820faa374

View file

@ -125,7 +125,7 @@ export const parseName = (point) => {
export const ds100Names = (id) => {
if (dataStorage.settings.showRIL100Names !== false) {
if (ds100[Number(id)] !== undefined) {
return '('+ds100[Number(id)]+')';
return ' ['+ds100[Number(id)]+']';
} else {
return '';
}