Skip to content

Commit

Permalink
fix demo in codesandbox embed
Browse files Browse the repository at this point in the history
  • Loading branch information
cherniavskii committed Sep 11, 2024
1 parent aed5fd7 commit adf7ec9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ const columns = [
if (!value || typeof value !== 'number') {
return value;
}
return `${value.toLocaleString()}$`;
return `$${value.toLocaleString()}`;
},
editable: true,
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ const columns: GridColDef<(typeof rows)[number]>[] = [
if (!value || typeof value !== 'number') {
return value;
}
return `${value.toLocaleString()}$`;
return `$${value.toLocaleString()}`;
},
editable: true,
},
Expand Down

0 comments on commit adf7ec9

Please sign in to comment.