mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 07:24:13 +00:00 
			
		
		
		
	Fix bug
This commit is contained in:
		
							parent
							
								
									a103ae6755
								
							
						
					
					
						commit
						c81ff10d5b
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -416,7 +416,7 @@ export default Vue.extend({
 | 
			
		|||
 | 
			
		||||
		reactions: {
 | 
			
		||||
			get() { return this.$store.state.settings.reactions.join('\n'); },
 | 
			
		||||
			set(value: string) { this.$store.dispatch('settings/set', { key: 'reactions', value: value.split('\n') }); }
 | 
			
		||||
			set(value: string) { this.$store.dispatch('settings/set', { key: 'reactions', value: value.trim().split('\n') }); }
 | 
			
		||||
		},
 | 
			
		||||
 | 
			
		||||
		useShadow: {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue