Merge pull request 'increase image description limit to 2048 characters' (#174) from bigger-image-description into main

Reviewed-on: FoundKeyGang/FoundKey#174
This commit is contained in:
Norm 2022-09-29 07:28:00 +00:00
commit 465b72ab53
4 changed files with 18 additions and 4 deletions

View File

@ -0,0 +1,14 @@
export class resizeCommentsDriveFile1663399074403 {
constructor() {
this.name = 'resizeCommentsDriveFile1663399074403';
}
async up(queryRunner) {
await queryRunner.query(`ALTER TABLE "drive_file" ALTER COLUMN "comment" TYPE character varying(2048)`);
}
async down(queryRunner) {
await queryRunner.query(`ALTER TABLE "drive_file" ALTER COLUMN "comment" TYPE character varying(512)`);
}
}

View File

@ -52,7 +52,7 @@ export const paramDef = {
folderId: { type: 'string', format: 'misskey:id', nullable: true },
name: { type: 'string' },
isSensitive: { type: 'boolean' },
comment: { type: 'string', nullable: true, maxLength: 512 },
comment: { type: 'string', nullable: true, maxLength: 2048 },
},
required: ['fileId'],
} as const;

View File

@ -25,7 +25,7 @@ export const paramDef = {
url: { type: 'string' },
folderId: { type: 'string', format: 'misskey:id', nullable: true, default: null },
isSensitive: { type: 'boolean', default: false },
comment: { type: 'string', nullable: true, maxLength: 512, default: null },
comment: { type: 'string', nullable: true, maxLength: 2048, default: null },
marker: { type: 'string', nullable: true, default: null },
force: { type: 'boolean', default: false },
},

View File

@ -104,8 +104,8 @@ function onInputKeydown(evt: KeyboardEvent): void {
}
const remainingLength = computed((): number => {
if (typeof inputValue !== 'string') return 512;
return 512 - length(inputValue);
if (typeof inputValue !== 'string') return 2048;
return 2048 - length(inputValue);
});
onMounted(() => {