Fix #6832
This commit is contained in:
		
							parent
							
								
									637fe8a04b
								
							
						
					
					
						commit
						abb3d2a8d9
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		|  | @ -253,7 +253,7 @@ export const store = createStore({ | |||
| 
 | ||||
| 				init(state, x) { | ||||
| 					for (const [key, value] of Object.entries(defaultDeviceUserSettings)) { | ||||
| 						if (x[key]) { | ||||
| 						if (Object.prototype.hasOwnProperty.call(x, key)) { | ||||
| 							state[key] = x[key]; | ||||
| 						} else { | ||||
| 							state[key] = value; | ||||
|  | @ -471,7 +471,7 @@ export const store = createStore({ | |||
| 
 | ||||
| 				init(state, x) { | ||||
| 					for (const [key, value] of Object.entries(defaultSettings)) { | ||||
| 						if (x[key]) { | ||||
| 						if (Object.prototype.hasOwnProperty.call(x, key)) { | ||||
| 							state[key] = x[key]; | ||||
| 						} else { | ||||
| 							state[key] = value; | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue