File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/webviews/apps/shared/components/search Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -346,7 +346,7 @@ export class GlSearchInput extends GlElement {
346346 this . searchHistoryPos = nextPos ;
347347 const value = this . searchHistory [ nextPos ] ;
348348 if ( value !== this . value ) {
349- this . value = value ;
349+ this . _value = value ;
350350 this . updateHelpText ( ) ;
351351 this . debouncedOnSearchChanged ( ) ;
352352 }
@@ -357,7 +357,7 @@ export class GlSearchInput extends GlElement {
357357 }
358358
359359 private handleInsertToken ( token : string ) {
360- this . value += `${ this . value . length > 0 ? ' ' : '' } ${ token } ` ;
360+ this . _value += `${ this . value . length > 0 ? ' ' : '' } ${ token } ` ;
361361 window . requestAnimationFrame ( ( ) => {
362362 this . updateHelpText ( ) ;
363363 // `@me` can be searched right away since it doesn't need additional text
You can’t perform that action at this time.
0 commit comments