mirror of
https://github.com/makeplane/plane
synced 2025-08-07 19:59:33 +00:00
fix: casing across all settings pages (#5675)
This commit is contained in:
committed by
GitHub
parent
0853a2790f
commit
846398df41
@@ -40,7 +40,7 @@ export const useProjectColumns = () => {
|
||||
const columns = [
|
||||
{
|
||||
key: "Full Name",
|
||||
content: "Full Name",
|
||||
content: "Full name",
|
||||
thClassName: "text-left",
|
||||
tdRender: (rowData: RowData) => (
|
||||
<NameColumn
|
||||
@@ -54,13 +54,13 @@ export const useProjectColumns = () => {
|
||||
},
|
||||
{
|
||||
key: "Display Name",
|
||||
content: "Display Name",
|
||||
content: "Display name",
|
||||
tdRender: (rowData: RowData) => <div className="w-32">{rowData.member.display_name}</div>,
|
||||
},
|
||||
|
||||
{
|
||||
key: "Account Type",
|
||||
content: "Account Type",
|
||||
content: "Account type",
|
||||
tdRender: (rowData: RowData) => (
|
||||
<AccountTypeColumn
|
||||
rowData={rowData}
|
||||
@@ -72,7 +72,7 @@ export const useProjectColumns = () => {
|
||||
},
|
||||
{
|
||||
key: "Joining Date",
|
||||
content: "Joining Date",
|
||||
content: "Joining date",
|
||||
tdRender: (rowData: RowData) => <div>{getFormattedDate(rowData?.member?.joining_date || "")}</div>,
|
||||
},
|
||||
];
|
||||
|
||||
@@ -15,7 +15,7 @@ export const BillingRoot = () => (
|
||||
<h4 className="text-md mb-1 leading-6">Current plan</h4>
|
||||
<p className="mb-3 text-sm text-custom-text-200">You are currently using the free plan</p>
|
||||
<a href={MARKETING_PRICING_PAGE_LINK} target="_blank" rel="noreferrer">
|
||||
<Button variant="neutral-primary">View Plans</Button>
|
||||
<Button variant="neutral-primary">View plans</Button>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -34,7 +34,7 @@ export const DeleteWorkspaceSection: FC<TDeleteWorkspace> = observer((props) =>
|
||||
buttonClassName="flex w-full items-center justify-between py-4"
|
||||
title={
|
||||
<>
|
||||
<span className="text-lg tracking-tight">Delete Workspace</span>
|
||||
<span className="text-lg tracking-tight">Delete workspace</span>
|
||||
{isOpen ? <ChevronUp className="h-5 w-5" /> : <ChevronDown className="h-5 w-5" />}
|
||||
</>
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user