Skip to content

Commit

Permalink
[QA-338] 카테고리 기본 아이콘을 폴더로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
stae1102 committed Jul 7, 2024
1 parent 93bd913 commit f1cbd30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/categories/category.entity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export class Category extends CoreEntity {
@OneToMany(() => Content, (content) => content.category)
contents: Content[];

@Column({ type: 'enum', enum: IconName, default: IconName.None })
@Column({ type: 'enum', enum: IconName, default: IconName.Folder })
@IsEnum(IconName)
iconName?: IconName;

Expand Down

0 comments on commit f1cbd30

Please sign in to comment.