Skip to content

Commit

Permalink
Merge pull request #339 from Quickchive/feat/QA-338/change-category-d…
Browse files Browse the repository at this point in the history
…efault-image

[QA-338] 카테고리 기본 아이콘을 폴더로 변경
  • Loading branch information
stae1102 authored Jul 7, 2024
2 parents 93bd913 + f1cbd30 commit 391e2b5
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 391e2b5

Please sign in to comment.