mirror of
https://github.com/fleetdm/fleet
synced 2026-05-22 16:39:01 +00:00
Fleet UI: Fix missing space/bullet in copy (#32062)
This commit is contained in:
parent
9745d50b26
commit
b7286d0163
1 changed files with 3 additions and 1 deletions
|
|
@ -66,7 +66,9 @@ const generateSoftwareOptionHelpText = (title: IEnhancedSoftwareTitle) => {
|
|||
|
||||
if (vppOption) {
|
||||
platformString = "macOS (App Store)";
|
||||
versionString = title.app_store_app?.version || "";
|
||||
versionString = title.app_store_app?.version
|
||||
? ` • ${title.app_store_app?.version}`
|
||||
: "";
|
||||
} else {
|
||||
if (title.platform && title.extension) {
|
||||
platformString = `${PLATFORM_DISPLAY_NAMES[title.platform]} (.${
|
||||
|
|
|
|||
Loading…
Reference in a new issue