mirror of
https://github.com/carlrobertoh/ProxyAI.git
synced 2026-05-19 07:54:46 +00:00
fix: endless loading when persona name or instrctions are not set (fixes #748)
This commit is contained in:
parent
1f453a47eb
commit
9f2669e0b1
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