Skip to content

Commit

Permalink
Show uniqueId in connections
Browse files Browse the repository at this point in the history
  • Loading branch information
tananaev committed Feb 28, 2024
1 parent 4aa3a83 commit 3309317
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions modern/src/settings/DeviceConnectionsPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ const DeviceConnectionsPage = () => {
baseId={id}
keyBase="deviceId"
keyLink="driverId"
titleGetter={(it) => `${it.name} (${it.uniqueId})`}
label={t('sharedDrivers')}
/>
)}
Expand Down
1 change: 1 addition & 0 deletions modern/src/settings/GroupConnectionsPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ const GroupConnectionsPage = () => {
baseId={id}
keyBase="groupId"
keyLink="driverId"
titleGetter={(it) => `${it.name} (${it.uniqueId})`}
label={t('sharedDrivers')}
/>
)}
Expand Down
2 changes: 2 additions & 0 deletions modern/src/settings/UserConnectionsPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ const UserConnectionsPage = () => {
baseId={id}
keyBase="userId"
keyLink="deviceId"
titleGetter={(it) => `${it.name} (${it.uniqueId})`}
label={t('deviceTitle')}
/>
<LinkField
Expand Down Expand Up @@ -98,6 +99,7 @@ const UserConnectionsPage = () => {
baseId={id}
keyBase="userId"
keyLink="driverId"
titleGetter={(it) => `${it.name} (${it.uniqueId})`}
label={t('sharedDrivers')}
/>
<LinkField
Expand Down

0 comments on commit 3309317

Please sign in to comment.