mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
Spiffier: Fix grammar and sentence casing (#3316)
This commit is contained in:
parent
84d36d9e22
commit
e05562ef09
4 changed files with 4 additions and 3 deletions
1
changes/issue-3292-3304-spiffier-casing
Normal file
1
changes/issue-3292-3304-spiffier-casing
Normal file
|
|
@ -0,0 +1 @@
|
|||
* Fix grammar and sentence casing
|
||||
|
|
@ -28,7 +28,7 @@ const PLATFORM_STRINGS: { [key: string]: string } = {
|
|||
};
|
||||
|
||||
const platformOptions = [
|
||||
{ label: "All Platforms", value: "" },
|
||||
{ label: "All platforms", value: "" },
|
||||
{ label: "macOS", value: "darwin" },
|
||||
{ label: "Windows", value: "windows" },
|
||||
{ label: "Ubuntu", value: "ubuntu" },
|
||||
|
|
|
|||
|
|
@ -1164,7 +1164,7 @@ const ManageHostsPage = ({
|
|||
|
||||
return (
|
||||
<Modal
|
||||
title="Edit Columns"
|
||||
title="Edit columns"
|
||||
onExit={() => setShowEditColumnsModal(false)}
|
||||
className={`${baseClass}__invite-modal`}
|
||||
>
|
||||
|
|
|
|||
|
|
@ -58,7 +58,7 @@ const EditColumnsModal = ({
|
|||
|
||||
return (
|
||||
<div className={"edit-column-modal"}>
|
||||
<p>Choose which columns you see</p>
|
||||
<p>Choose which columns you see:</p>
|
||||
<div className={"modal-items"}>
|
||||
{columnItems.map((column) => {
|
||||
if (column.disableHidden) return null;
|
||||
|
|
|
|||
Loading…
Reference in a new issue