Skip to content

Commit

Permalink
chore: more cases
Browse files Browse the repository at this point in the history
  • Loading branch information
ArmanNik committed Sep 19, 2024
1 parent 3b5fed7 commit 4bd71d2
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions v2/pink-sb/src/stories/upload/Box.stories.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,21 @@
{
name: 'file1.jpg',
extension: 'jpg',
size: 1024,
removable: true
size: 41024,
status: 'success'
},
{
name: 'file2.jpg',
extension: 'jpg',
size: 1024,
removable: true,
error: 'File exceeds size limit'
size: 1465465024,
error: 'File exceeds size limit',
status: 'failed'
},
{
name: 'file2.jpg',
extension: 'jpg',
size: 102,
status: 'pending'
}
];
</script>
Expand Down

0 comments on commit 4bd71d2

Please sign in to comment.