Skip to content

Commit 7fa8ffc

Browse files
committed
[REF]: fix border radius on Paper component
1 parent a6e95d7 commit 7fa8ffc

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
"css-loader": "^6.5.1",
6767
"eslint": "^7.10.0",
6868
"eslint-config-prettier": "^8.1.0",
69-
"eslint-plugin-jest": "^25.2.2",
69+
"eslint-plugin-jest": "^25.2.3",
7070
"eslint-plugin-prettier": "^4.0.0",
7171
"eslint-plugin-react": "^7.21.2",
7272
"fork-ts-checker-webpack-plugin": "^6.4.0",
@@ -82,7 +82,7 @@
8282
"sass-loader": "^12.3.0",
8383
"style-loader": "^3.3.1",
8484
"ts-jest": "^26.4.0",
85-
"trim": "^0.0.3",
85+
"trim": "^1.0.1",
8686
"immer": "^9.0.6",
8787
"set-value": "^4.0.1",
8888
"ts-loader": "^9.2.5",

src/components/dropzone/components/utils/validation.utils.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -224,11 +224,11 @@ export const makeSynthticFileValidate = (
224224
//now make a File Validated instance
225225
const newFileValidated: FileValidated = {
226226
id: FileIdGenerator.getNextId(),
227-
valid,
228-
file,
227+
valid:valid,
228+
file:file,
229229
uploadStatus: newUpoadStatus,
230230
uploadMessage: customUploadMessage,
231-
errors
231+
errors:errors
232232
}
233233
return newFileValidated;
234234
}

src/components/file-item/components/FileItem/FileItem.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
position: relative;
1818
height: 120px;
1919
width: 120px;
20+
border-radius: 8px;
2021
.img-container {
2122
&.blur {
2223
img {

0 commit comments

Comments
 (0)