mirror of
https://github.com/carlrobertoh/ProxyAI.git
synced 2026-05-23 04:28:32 +00:00
fix: endless loading when persona name or instrctions are not set (fixes #748)
This commit is contained in:
parent
cdb24796b8
commit
55b8e9800f
1 changed files with 2 additions and 2 deletions
|
|
@ -207,8 +207,8 @@ class PersonasSettingsForm {
|
|||
tableModel.addPersonaRow(
|
||||
PersonaDetails(
|
||||
persona.id,
|
||||
persona.name!!,
|
||||
persona.instructions!!
|
||||
persona.name ?: "",
|
||||
persona.instructions ?: ""
|
||||
),
|
||||
selectedPersona.id,
|
||||
index
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue