increase image description limit to 2048 characters
ci/woodpecker/push/lint-foundkey-js Pipeline was successful Details
ci/woodpecker/push/build Pipeline was successful Details
ci/woodpecker/push/lint-client Pipeline was successful Details
ci/woodpecker/push/lint-backend Pipeline was successful Details
ci/woodpecker/push/test Pipeline was successful Details
ci/woodpecker/pr/lint-foundkey-js Pipeline was successful Details
ci/woodpecker/pr/lint-backend Pipeline failed Details
ci/woodpecker/pr/build Pipeline was successful Details
ci/woodpecker/pr/lint-client Pipeline failed Details
ci/woodpecker/pr/test Pipeline failed Details

Changelog: Changed
This commit is contained in:
Puniko 2022-09-17 10:48:58 +02:00 committed by Francis Dinh
parent 9470e12424
commit 186d693385
Signed by: norm
GPG Key ID: 7123E30E441E80DE
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(() => {