Compare commits

...

1 Commits

Author SHA1 Message Date
Dimitrie Stefanescu 8bb14d3389 fix: in the model create dialog, always defaults to either a model name 2025-05-20 18:01:01 +01:00
+1 -1
View File
@@ -95,7 +95,7 @@ const hostAppStore = useHostAppStore()
const { activeAccount } = storeToRefs(accountStore)
const accountId = computed(() => activeAccount.value.accountInfo.id)
const newModelName = ref<string>()
const newModelName = ref<string>(hostAppStore.documentInfo?.name ?? 'unnamed model')
const errorMessage = ref<WorkspacePermissionMessage>()
const toggleDialog = () => {