Skip to content

Commit

Permalink
chore: Update STI table column property names
Browse files Browse the repository at this point in the history
  • Loading branch information
EliaGuarnieri committed Jul 12, 2024
1 parent c333887 commit cb34ace
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/sti-table/columns.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ export const columns: ColumnDef<IColumns>[] = [

return dataPreparation.description ? (
<div className="flex justify-center">
<span className="inline-flex text-white items-center rounded-full px-0.5 cursor-help" title={`${dataPreparation.description}\n\nDATA CLEANING: ${dataPreparation["data-cleaning"]}\nUNITS OF MEASUREMENTS: ${dataPreparation["units-of-measurements"]}`}>
<span className="inline-flex text-white items-center rounded-full px-0.5 cursor-help" title={`${dataPreparation.description}\n\nSPELL CHECKER: ${dataPreparation["spell-checker"]}\nUNITS OF MEASUREMENTS: ${dataPreparation["units-of-measurements"]}`}>
<Check className="h-5 w-5 text-green-400" />
<Info className="text-tableText ml-1 h-4 w-4" />
</span>
Expand Down
2 changes: 1 addition & 1 deletion src/components/sti-table/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export interface ISteps {

export interface IDataPreparation {
"description": string
"data-cleaning": string
"spell-checker": string
"units-of-measurements": string
}

Expand Down

0 comments on commit cb34ace

Please sign in to comment.