Spiffier: Fix grammar and sentence casing (#3316)

This commit is contained in:
RachelElysia 2021-12-10 11:57:06 -08:00 committed by GitHub
parent 84d36d9e22
commit e05562ef09
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 3 deletions

View file

@ -0,0 +1 @@
* Fix grammar and sentence casing

View file

@ -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" },

View file

@ -1164,7 +1164,7 @@ const ManageHostsPage = ({
return (
<Modal
title="Edit Columns"
title="Edit columns"
onExit={() => setShowEditColumnsModal(false)}
className={`${baseClass}__invite-modal`}
>

View file

@ -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;