File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ export interface GitpodButtonProps {
14
14
15
15
export const GitpodButton = ( { application, additionalClassNames } : GitpodButtonProps ) => {
16
16
const [ address ] = useStorage < string > ( STORAGE_KEY_ADDRESS , DEFAULT_GITPOD_ENDPOINT ) ;
17
- const [ openInNewTab ] = useStorage < boolean > ( STORAGE_KEY_NEW_TAB , false ) ;
17
+ const [ openInNewTab ] = useStorage < boolean > ( STORAGE_KEY_NEW_TAB , true ) ;
18
18
19
19
const [ showDropdown , setShowDropdown ] = useState ( false ) ;
20
20
const actions = [
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ function IndexPopup() {
31
31
setAddress ( storedAddress ) ;
32
32
} , [ storedAddress ] )
33
33
34
- const [ openInNewTab , setOpenInNewTab ] = useStorage < boolean > ( STORAGE_KEY_NEW_TAB , false ) ;
34
+ const [ openInNewTab , setOpenInNewTab ] = useStorage < boolean > ( STORAGE_KEY_NEW_TAB , true ) ;
35
35
const [ automaticallyDetect , setAutomaticallyDetect ] = useStorage < boolean > ( STORAGE_AUTOMATICALLY_DETECT_GITPOD , true ) ;
36
36
37
37
return (
You can’t perform that action at this time.
0 commit comments