Skip to content

Commit

Permalink
fix: correct typo in created_at and fix error messages (#520)
Browse files Browse the repository at this point in the history
  • Loading branch information
anujk14 authored Mar 4, 2024
1 parent ac3795a commit 93c6262
Show file tree
Hide file tree
Showing 16 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion ui/src/containers/billingplans.list/columns.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export const getColumns: (
footer: (props) => props.column.id,
},
{
header: "Create At",
header: "Created At",
accessorKey: "created_at",
meta: {
headerFilter: false,
Expand Down
2 changes: 1 addition & 1 deletion ui/src/containers/groups.list/columns.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export const getColumns: (
filterVariant: "text",
},
{
header: "Create At",
header: "Created At",
accessorKey: "created_at",
filterVariant: "text",
meta: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export const getColumns: (
},

{
header: "Create At",
header: "Created At",
accessorKey: "created_at",
meta: {
headerFilter: false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export const getColumns: (
filterVariant: "text",
},
{
header: "Create At",
header: "Created At",
accessorKey: "created_at",
meta: {
headerFilter: false,
Expand Down
2 changes: 1 addition & 1 deletion ui/src/containers/organisations.list/columns.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export const getColumns: (
},

{
header: "Create At",
header: "Created At",
accessorKey: "created_at",

meta: {
Expand Down
2 changes: 1 addition & 1 deletion ui/src/containers/organisations.list/projects/columns.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const getColumns: (
filterVariant: "text",
},
{
header: "Create At",
header: "Created At",
accessorKey: "created_at",
meta: {
headerFilter: false,
Expand Down
2 changes: 1 addition & 1 deletion ui/src/containers/organisations.list/projects/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export function useUser() {
export const noDataChildren = (
<EmptyState>
<div className="svg-container"></div>
<h3>0 user created</h3>
<h3>No users created</h3>
<div className="pera">Try creating a new user.</div>
</EmptyState>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const getColumns: (
footer: (props) => props.column.id,
},
{
header: "Create At",
header: "Created At",
accessorKey: "created_at",
meta: {
headerFilter: false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export function useUser() {
export const noDataChildren = (
<EmptyState>
<div className="svg-container"></div>
<h3>0 service user created</h3>
<h3>No service users created</h3>
<div className="pera">Try creating a new service user.</div>
</EmptyState>
);
Expand Down
2 changes: 1 addition & 1 deletion ui/src/containers/organisations.list/users/columns.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const getColumns: (
footer: (props) => props.column.id,
},
{
header: "Create At",
header: "Created At",
accessorKey: "created_at",
meta: {
headerFilter: false,
Expand Down
2 changes: 1 addition & 1 deletion ui/src/containers/organisations.list/users/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export function useUser() {
export const noDataChildren = (
<EmptyState>
<div className="svg-container"></div>
<h3>0 user created</h3>
<h3>No users created</h3>
<div className="pera">Try creating a new user.</div>
</EmptyState>
);
Expand Down
2 changes: 1 addition & 1 deletion ui/src/containers/projects.list/columns.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export const getColumns: (
},

{
header: "Create At",
header: "Created At",
accessorKey: "created_at",
meta: {
headerFilter: false,
Expand Down
2 changes: 1 addition & 1 deletion ui/src/containers/projects.list/users/columns.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const getColumns: (
footer: (props) => props.column.id,
},
{
header: "Create At",
header: "Created At",
accessorKey: "created_at",
meta: {
headerFilter: false,
Expand Down
2 changes: 1 addition & 1 deletion ui/src/containers/projects.list/users/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export function useUser() {
export const noDataChildren = (
<EmptyState>
<div className="svg-container"></div>
<h3>0 user created</h3>
<h3>No users created</h3>
<div className="pera">Try creating a new user.</div>
</EmptyState>
);
Expand Down
2 changes: 1 addition & 1 deletion ui/src/containers/users.list/columns.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export const getColumns: (
footer: (props) => props.column.id,
},
{
header: "Create At",
header: "Created At",
accessorKey: "created_at",
meta: {
headerFilter: false,
Expand Down
2 changes: 1 addition & 1 deletion ui/src/containers/users.list/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export function useUser() {
export const noDataChildren = (
<EmptyState>
<div className="svg-container"></div>
<h3>0 user created</h3>
<h3>No users created</h3>
<div className="pera">Try creating a new user.</div>
</EmptyState>
);
Expand Down

0 comments on commit 93c6262

Please sign in to comment.