Skip to content

Commit aacb4d7

Browse files
authoredJul 16, 2020
fix: optional asset description (#407)
Creating assets is possible without providing a description.
1 parent 8d0662e commit aacb4d7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎lib/entities/asset.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export type AssetProps = {
2828
/** Title for this asset */
2929
title: { [key: string]: string }
3030
/** Description for this asset */
31-
description: { [key: string]: string }
31+
description?: { [key: string]: string }
3232
/** File object for this asset */
3333
file: {
3434
[key: string]: {

0 commit comments

Comments
 (0)
Please sign in to comment.