Skip to content

Commit c62d3de

Browse files
authored
Merge pull request #2309 from JohnDuprey/dev
Update footer and UI tweaks
2 parents acf1eeb + d6fad2f commit c62d3de

File tree

6 files changed

+9
-8
lines changed

6 files changed

+9
-8
lines changed

public/img/augmentt-dark.png

5.66 KB
Loading

public/img/augmentt-light.png

33.3 KB
Loading

public/img/netfriends.png

-3.69 KB
Binary file not shown.

public/img/netfriends_dark.png

-14 KB
Binary file not shown.

src/components/layout/AppFooter.jsx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,30 +10,30 @@ const AppFooter = () => {
1010
const isDark =
1111
currentTheme === 'impact' || (currentTheme === 'default' && preferredTheme === 'impact')
1212

13-
const netfriends = isDark ? '/img/netfriends_dark.png' : '/img/netfriends.png'
1413
const datto = isDark ? '/img/datto.png' : '/img/datto.png'
1514
const huntress = isDark ? '/img/huntress_teal.png' : '/img/huntress_teal.png'
1615
const rewst = isDark ? '/img/rewst_dark.png' : '/img/rewst.png'
1716
const ninjaone = isDark ? '/img/ninjaone_dark.png' : '/img/ninjaone.png'
17+
const augmentt = isDark ? '/img/augmentt-dark.png' : '/img/augmentt-light.png'
1818

1919
return (
2020
<CFooter className="d-flex justify-content-between align-items-center stickyfooter">
2121
<div className="sponsors">
2222
<p>
2323
This application is sponsored by
24-
<CLink className="me-2" href="https://www.huntress.com/">
24+
<CLink className="mx-2" href="https://www.huntress.com/" target="_blank">
2525
<CImage src={huntress} alt="Huntress" />
2626
</CLink>
27-
<CLink className="me-2" href="https://datto.com/">
27+
<CLink className="me-2" href="https://datto.com/" target="_blank">
2828
<CImage src={datto} alt="Datto" />
2929
</CLink>
30-
<CLink className="me-2" href="https://rewst.io/">
30+
<CLink className="me-2" href="https://rewst.io/" target="_blank">
3131
<CImage src={rewst} alt="Rewst" />
3232
</CLink>
33-
<CLink className="me-2" href="https://netfriends.com">
34-
<CImage src={netfriends} alt="Netfriends" />
33+
<CLink className="me-2" href="https://www.augmentt.com" target="_blank">
34+
<CImage src={augmentt} alt="Augmentt" />
3535
</CLink>
36-
<CLink className="me-2" href="https://ninjaone.com">
36+
<CLink className="me-2" href="https://ninjaone.com" target="_blank">
3737
<CImage src={ninjaone} alt="NinjaOne" />
3838
</CLink>
3939
</p>

src/views/identity/administration/Devices.jsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,8 @@ const DevicesList = () => {
159159
TenantFilter: tenant?.defaultDomainName,
160160
Endpoint: 'devices',
161161
$format: 'application/json',
162-
sort: 'displayName',
162+
$orderby: 'displayName',
163+
$count: true,
163164
},
164165
columns,
165166
tableProps: {

0 commit comments

Comments
 (0)