File tree Expand file tree Collapse file tree 4 files changed +25
-2
lines changed Expand file tree Collapse file tree 4 files changed +25
-2
lines changed Original file line number Diff line number Diff line change
1
+ container :
2
+ image : node:latest
3
+
4
+ test_task :
5
+ node_modules_cache :
6
+ folder : node_modules
7
+ fingerprint_script : cat yarn.lock
8
+ populate_script : yarn install
9
+ script : yarn build
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ export class Home extends React.Component {
69
69
}
70
70
} )
71
71
. catch ( ( e ) => {
72
- alert ( e ) ;
72
+ console . log ( e ) ;
73
73
this . setState ( { checkBox : false } ) ;
74
74
} ) ;
75
75
if ( this . state . checkBox === true ) {
@@ -108,7 +108,7 @@ export class Home extends React.Component {
108
108
else
109
109
this . setState ( { checkBox : false , checkBoxLabelValue : "Select this domain to hide from history." } ) ;
110
110
} ) . catch ( ( e ) => {
111
- alert ( e ) ;
111
+ console . log ( e ) ;
112
112
} ) ;
113
113
//check if there any closed_tabs session is in the storage
114
114
dBController . get ( "restore_tabs_url_list" ) . then ( ( dbres ) => {
Original file line number Diff line number Diff line change
1
+ import React from 'react' ;
2
+
3
+ export default class setting extends React . Component {
4
+ constructor ( props ) {
5
+ super ( props ) ;
6
+ }
7
+ render ( ) {
8
+ return (
9
+ < div >
10
+
11
+ </ div >
12
+ ) ;
13
+ }
14
+ }
You can’t perform that action at this time.
0 commit comments