diff --git a/src/components/NewConversationDialog/NewConversationSetupPage.vue b/src/components/NewConversationDialog/NewConversationSetupPage.vue index fbc13076c84..e75998a7fa8 100644 --- a/src/components/NewConversationDialog/NewConversationSetupPage.vue +++ b/src/components/NewConversationDialog/NewConversationSetupPage.vue @@ -346,6 +346,12 @@ export default { async created() { await this.settingsStore.fetchPresets() + + // Parameters of the default preset are configurable by administrators, + // so they have to be applied to the initial state as well + if (this.preset === CONVERSATION.PRESET.DEFAULT) { + await this.applyPresetParameters(CONVERSATION.PRESET.DEFAULT) + } }, methods: {