Skip to content

Commit

Permalink
feat: add debian logo
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim-Unger authored Oct 2, 2024
1 parent 3c51b06 commit 696233f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions apps/view/src/widgets/server.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { Config, OsInfo, Transient } from '@dash/common';
import {
faApple,
faCentos,
faDebian,
faFedora,
faGithub,
faLinux,
Expand Down Expand Up @@ -121,6 +122,8 @@ const ServerIcon: FC<{ os: string } & Omit<FontAwesomeIconProps, 'icon'>> = ({

if (os.includes('ubuntu')) {
icon = faUbuntu;
} else if (os.includes('debian')){
icon = faDebian
} else if (os.includes('suse')) {
icon = faSuse;
} else if (os.includes('redhat')) {
Expand Down

0 comments on commit 696233f

Please sign in to comment.