mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-03 23:14:13 +00:00 
			
		
		
		
	Merge branch 'develop' of https://github.com/misskey-dev/misskey into develop
This commit is contained in:
		
						commit
						39e269db8c
					
				
					 2 changed files with 8 additions and 3 deletions
				
			
		| 
						 | 
				
			
			@ -42,7 +42,7 @@ import { i18n } from '@/i18n';
 | 
			
		|||
 | 
			
		||||
const props = defineProps<{
 | 
			
		||||
	modelValue: string | number;
 | 
			
		||||
	type?: 'text' | 'number' | 'password' | 'email' | 'url' | 'date' | 'time' | 'search';
 | 
			
		||||
	type?: 'text' | 'number' | 'password' | 'email' | 'url' | 'date' | 'time' | 'search' | 'datetime-local';
 | 
			
		||||
	required?: boolean;
 | 
			
		||||
	readonly?: boolean;
 | 
			
		||||
	disabled?: boolean;
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -29,7 +29,7 @@
 | 
			
		|||
					<MkInput v-model="ad.ratio" type="number">
 | 
			
		||||
						<template #label>{{ i18n.ts.ratio }}</template>
 | 
			
		||||
					</MkInput>
 | 
			
		||||
					<MkInput v-model="ad.expiresAt" type="date">
 | 
			
		||||
					<MkInput v-model="ad.expiresAt" type="datetime-local">
 | 
			
		||||
						<template #label>{{ i18n.ts.expiration }}</template>
 | 
			
		||||
					</MkInput>
 | 
			
		||||
				</FormSplit>
 | 
			
		||||
| 
						 | 
				
			
			@ -61,7 +61,12 @@ import { definePageMetadata } from '@/scripts/page-metadata';
 | 
			
		|||
let ads: any[] = $ref([]);
 | 
			
		||||
 | 
			
		||||
os.api('admin/ad/list').then(adsResponse => {
 | 
			
		||||
	ads = adsResponse;
 | 
			
		||||
	ads = adsResponse.map(r => {
 | 
			
		||||
		return {
 | 
			
		||||
			...r,
 | 
			
		||||
			expiresAt: new Date(r.expiresAt).toISOString().slice(0, 16),
 | 
			
		||||
		};
 | 
			
		||||
	});
 | 
			
		||||
});
 | 
			
		||||
 | 
			
		||||
function add() {
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue