fix: compatibility issues

This commit is contained in:
Carl-Robert Linnupuu 2024-11-25 10:52:04 +00:00
parent 65296741f5
commit 70b8a9740d

View file

@ -146,13 +146,9 @@ class PromptsForm {
}
private fun expandAll() {
tree.expandPaths(
listOf(
TreePath(coreActionsNode.path),
TreePath(personasNode.path),
TreePath(chatActionsNode.path)
)
)
tree.expandPath(TreePath(coreActionsNode.path))
tree.expandPath(TreePath(personasNode.path))
tree.expandPath(TreePath(chatActionsNode.path))
}
private fun isCoreActionsModified(settingsState: CoreActionsState): Boolean {