fix default value for message channel enums (#4934)
This commit is contained in:
@ -68,7 +68,7 @@ export class MessageChannelObjectMetadata extends BaseObjectMetadata {
|
||||
color: 'orange',
|
||||
},
|
||||
],
|
||||
defaultValue: MessageChannelVisibility.SHARE_EVERYTHING,
|
||||
defaultValue: `'${MessageChannelVisibility.SHARE_EVERYTHING}'`,
|
||||
})
|
||||
visibility: string;
|
||||
|
||||
@ -111,7 +111,7 @@ export class MessageChannelObjectMetadata extends BaseObjectMetadata {
|
||||
color: 'blue',
|
||||
},
|
||||
],
|
||||
defaultValue: MessageChannelType.EMAIL,
|
||||
defaultValue: `'${MessageChannelType.EMAIL}'`,
|
||||
})
|
||||
type: string;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user