Skip to content

Add SSMS and YT Music icons and images - #47192

Merged
allenhouchins merged 1 commit into
mainfrom
allenhouchins-fix-missing-icons
Jun 9, 2026
Merged

Add SSMS and YT Music icons and images#47192
allenhouchins merged 1 commit into
mainfrom
allenhouchins-fix-missing-icons

Conversation

@allenhouchins

@allenhouchins allenhouchins commented Jun 9, 2026

Copy link
Copy Markdown
Member

Add two new React SVG icon components (SqlServerManagementStudio and YtMusic) to frontend/pages/SoftwarePage/components/icons and export them via the icons index. Include corresponding 2x app icon PNGs in website/assets/images and update the icons index file to expose the new icons for the Software page.

Summary by CodeRabbit

  • New Features
    • Added SQL Server Management Studio icon to the Software Page
    • Added YouTube Music icon to the Software Page

Add two new React SVG icon components (SqlServerManagementStudio and YtMusic) to frontend/pages/SoftwarePage/components/icons and export them via the icons index. Include corresponding 2x app icon PNGs in website/assets/images and update the icons index file to expose the new icons for the Software page.
@codecov

codecov Bot commented Jun 9, 2026

Copy link
Copy Markdown

Codecov Report

❌ Patch coverage is 50.00000% with 2 lines in your changes missing coverage. Please review.
✅ Project coverage is 67.15%. Comparing base (6d67565) to head (2afae98).
⚠️ Report is 6 commits behind head on main.

Files with missing lines Patch % Lines
...age/components/icons/SqlServerManagementStudio.tsx 50.00% 1 Missing ⚠️
...nd/pages/SoftwarePage/components/icons/YtMusic.tsx 50.00% 1 Missing ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##             main   #47192      +/-   ##
==========================================
- Coverage   67.19%   67.15%   -0.04%     
==========================================
  Files        2946     2948       +2     
  Lines      226429   226433       +4     
  Branches    11683    11829     +146     
==========================================
- Hits       152146   152072      -74     
- Misses      60539    60622      +83     
+ Partials    13744    13739       -5     
Flag Coverage Δ
frontend 57.89% <50.00%> (-0.01%) ⬇️

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Harness.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@allenhouchins
allenhouchins marked this pull request as ready for review June 9, 2026 17:15
@allenhouchins
allenhouchins requested a review from a team as a code owner June 9, 2026 17:15
Copilot AI review requested due to automatic review settings June 9, 2026 17:15
@fleet-release
fleet-release requested a review from eashaw June 9, 2026 17:15
@allenhouchins
allenhouchins merged commit 2c25041 into main Jun 9, 2026
25 of 26 checks passed
@allenhouchins
allenhouchins deleted the allenhouchins-fix-missing-icons branch June 9, 2026 17:15
@coderabbitai

coderabbitai Bot commented Jun 9, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

Caution

Review failed

The pull request is closed.

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: af332361-f3ee-46dd-8d62-22728d3e092b

📥 Commits

Reviewing files that changed from the base of the PR and between 1842b11 and 2afae98.

⛔ Files ignored due to path filters (3)
  • website/assets/images/app-icon-burp-suite-60x60@2x.png is excluded by !**/*.png
  • website/assets/images/app-icon-sql-server-management-studio-60x60@2x.png is excluded by !**/*.png
  • website/assets/images/app-icon-yt-music-60x60@2x.png is excluded by !**/*.png
📒 Files selected for processing (3)
  • frontend/pages/SoftwarePage/components/icons/SqlServerManagementStudio.tsx
  • frontend/pages/SoftwarePage/components/icons/YtMusic.tsx
  • frontend/pages/SoftwarePage/components/icons/index.ts

Walkthrough

This PR extends the SoftwarePage icon library by adding two new software icons. It introduces SqlServerManagementStudio and YtMusic as React SVG components that embed base64 PNG images at 32x32 resolution. Both components are then imported and registered in the SOFTWARE_NAME_TO_ICON_MAP with their respective software name keys, following the existing pattern in the icon registry.

Possibly related PRs

  • fleetdm/fleet#46988: Both PRs extend SOFTWARE_NAME_TO_ICON_MAP with new software-to-icon mappings using the same registry pattern.
  • fleetdm/fleet#47014: Both PRs add new icon components and wire them into SOFTWARE_NAME_TO_ICON_MAP following the identical pattern for software icon registration.
✨ Finishing Touches
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch allenhouchins-fix-missing-icons

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Note

Copilot was unable to run its full agentic suite in this review.

Adds new software icons to the SoftwarePage icon set and wires them into the name→icon lookup map.

Changes:

  • Added new icon components for “YouTube Music” and “SQL Server Management Studio”.
  • Registered the new icons in SOFTWARE_NAME_TO_ICON_MAP.
  • Updated the icons barrel (index.ts) to export/import the new components.

Reviewed changes

Copilot reviewed 3 out of 6 changed files in this pull request and generated 5 comments.

File Description
frontend/pages/SoftwarePage/components/icons/index.ts Adds imports and map entries for the two new software icons.
frontend/pages/SoftwarePage/components/icons/YtMusic.tsx Introduces a YouTube Music icon component using an embedded base64 PNG inside an SVG.
frontend/pages/SoftwarePage/components/icons/SqlServerManagementStudio.tsx Introduces an SSMS icon component using an embedded base64 PNG inside an SVG.
Comments suppressed due to low confidence (1)

frontend/pages/SoftwarePage/components/icons/YtMusic.tsx:1

  • Embedding a full base64-encoded PNG directly in the TSX component will significantly bloat the JS bundle (and slow down builds/parse time), since this string ships as code. Consider moving the bitmap to a static asset (e.g., public/), importing it as a URL, or replacing it with actual SVG path data; if you must keep a data URI, centralize/reuse it (and/or compress) to reduce duplication and diff noise.
import * as React from "react";

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment on lines +6 to +9
<svg xmlns="http://www.w3.org/2000/svg" width={32} height={32} {...props}>
<image
width={32}
height={32}
import type { SVGProps } from "react";

const YtMusic = (props: SVGProps<SVGSVGElement>) => (
<svg xmlns="http://www.w3.org/2000/svg" width={32} height={32} {...props}>
Comment on lines +6 to +9
<svg xmlns="http://www.w3.org/2000/svg" width={32} height={32} {...props}>
<image
width={32}
height={32}
import type { SVGProps } from "react";

const SqlServerManagementStudio = (props: SVGProps<SVGSVGElement>) => (
<svg xmlns="http://www.w3.org/2000/svg" width={32} height={32} {...props}>

import type { SVGProps } from "react";

const YtMusic = (props: SVGProps<SVGSVGElement>) => (
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants