Skip to content

Commit

Permalink
chore: deploy v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nusr committed Feb 14, 2025
1 parent fbfbe5b commit ef5c9f3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "excel-collab",
"version": "0.1.0",
"version": "0.1.1",
"description": "Online Collaboration Excel",
"author": "Steve Xu <[email protected]>",
"bugs": "https://github.com/nusr/excel/issues",
Expand Down
2 changes: 1 addition & 1 deletion src/containers/FormulaBar/FormulaEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export function getEditorStyle(
width: style.width,
height: style.height,
borderRadius: 0,
border: '2px solid var(--primaryColor);'
border: '2px solid var(--primaryColor)'
};
return result;
}
Expand Down
2 changes: 1 addition & 1 deletion src/containers/__tests__/FormulaEditor.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ describe('getEditorStyle', () => {
width: 100,
height: 100,
borderRadius: 0,
border: '2px solid var(--primaryColor);',
border: '2px solid var(--primaryColor)',
};
expect(
getEditorStyle(
Expand Down

0 comments on commit ef5c9f3

Please sign in to comment.