FIX: allow selection of persona when list gets too long (#327)
This commit is contained in:
parent
f973fafc33
commit
7f36175ad3
|
@ -66,6 +66,10 @@ export default class BotSelector extends Component {
|
|||
}
|
||||
}
|
||||
|
||||
get filterable() {
|
||||
return this.botOptions.length > 4;
|
||||
}
|
||||
|
||||
get value() {
|
||||
return this._value;
|
||||
}
|
||||
|
@ -82,7 +86,7 @@ export default class BotSelector extends Component {
|
|||
class="persona-selector__dropdown"
|
||||
@value={{this.value}}
|
||||
@content={{this.botOptions}}
|
||||
@options={{hash icon="robot"}}
|
||||
@options={{hash icon="robot" filterable=this.filterable}}
|
||||
/>
|
||||
</div>
|
||||
</template>
|
||||
|
|
|
@ -12,6 +12,9 @@ nav.post-controls .actions button.cancel-streaming {
|
|||
.gpt-persona {
|
||||
margin-bottom: 5px;
|
||||
margin-top: -10px;
|
||||
.select-kit.single-select.dropdown-select-box ul.select-kit-collection {
|
||||
max-height: 200px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue