UI: Allow navigate to list from View Secret card (#22502)

This commit is contained in:
Chelsea Shaw
2023-08-23 15:45:50 -05:00
committed by GitHub
parent a0217ad017
commit dd43e0db2f
6 changed files with 80 additions and 13 deletions

View File

@@ -16,6 +16,12 @@ export default class inputSelect extends Component {
*
*/
@tracked searchInput = '';
constructor() {
super(...arguments);
this.searchInput = this.args?.initialValue;
}
@action
inputChanged() {
this.args.onChange(this.searchInput);