How can I set systemInputRef to a preset query. #290
Unanswered
krish-shahh
asked this question in
Q&A
Replies: 1 comment
-
You can set preset role in const [currentSystemRoleSettings, setCurrentSystemRoleSettings] = createSignal('') // to createSignal('Preset role value') If you want to disable editing, set <SystemRoleSettings
canEdit={() => messageList().length === 0} // to canEdit={() => false}
systemRoleEditing={systemRoleEditing}
setSystemRoleEditing={setSystemRoleEditing}
currentSystemRoleSettings={currentSystemRoleSettings}
setCurrentSystemRoleSettings={setCurrentSystemRoleSettings}
/> |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I do not want the user to change the system role. How can I change the current code to implement this?
Beta Was this translation helpful? Give feedback.
All reactions