mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 07:24:13 +00:00 
			
		
		
		
	[Client] Improve featured notes page
This commit is contained in:
		
							parent
							
								
									ec3ca3032e
								
							
						
					
					
						commit
						562bb5842b
					
				
					 3 changed files with 3 additions and 0 deletions
				
			
		| 
						 | 
				
			
			@ -44,6 +44,7 @@ export default Vue.extend({
 | 
			
		|||
				this.$root.api('notes/featured', {
 | 
			
		||||
					limit: 20,
 | 
			
		||||
				}).then(notes => {
 | 
			
		||||
					notes.sort((a, b) => new Date(b.createdAt).getTime() - new Date(a.createdAt).getTime());
 | 
			
		||||
					res(notes);
 | 
			
		||||
					this.fetching = false;
 | 
			
		||||
					this.$emit('loaded');
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -30,6 +30,7 @@ export default Vue.extend({
 | 
			
		|||
			this.$root.api('notes/featured', {
 | 
			
		||||
				limit: 20
 | 
			
		||||
			}).then(notes => {
 | 
			
		||||
				notes.sort((a, b) => new Date(b.createdAt).getTime() - new Date(a.createdAt).getTime());
 | 
			
		||||
				this.notes = notes;
 | 
			
		||||
				this.fetching = false;
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -38,6 +38,7 @@ export default Vue.extend({
 | 
			
		|||
			this.$root.api('notes/featured', {
 | 
			
		||||
				limit: 20
 | 
			
		||||
			}).then(notes => {
 | 
			
		||||
				notes.sort((a, b) => new Date(b.createdAt).getTime() - new Date(a.createdAt).getTime());
 | 
			
		||||
				this.notes = notes;
 | 
			
		||||
				this.fetching = false;
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue