fix no resizing on instructions textarea

This commit is contained in:
John Mavrick 2023-12-21 17:04:28 -08:00
parent 7c2e37c972
commit fbfb392aeb
2 changed files with 2 additions and 1 deletions

View File

@ -86,7 +86,7 @@ export class AssistantEditModal extends Modal {
addInstructionsSetting(contentEl: HTMLElement) {
new Setting(contentEl)
.setName('Instructions (required)')
.setDesc('The instructions you want the assistant to follow (free by courtesy of OpenAI until 01/12/2024')
.setDesc('The instructions you want the assistant to follow')
.setClass('form-setting-textarea')
.addTextArea((text) => {
text.setPlaceholder('Enter instructions...')

View File

@ -260,6 +260,7 @@
.form-setting-textarea textarea {
resize: vertical;
width: 100%;
}
.modal-footer {