fix(lm): wrong version of migration (#3148)

* fix(lm): wrong version of migration

* fix: typo
This commit is contained in:
YANG QIA 2023-12-06 15:07:23 +08:00 committed by GitHub
parent ff097936dd
commit 269467ebb0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -70,7 +70,7 @@ export class G2PlotChart extends Chart {
getReference() {
return {
title: this.title,
link: `https://charts.ant.design/api/plots/${this.name}`,
link: `https://ant-design-charts.antgroup.com/api/plots/${this.name}`,
};
}
}

View File

@ -5,7 +5,7 @@ import { Op } from '@nocobase/database';
export default class FixModuleMigration extends Migration {
async up() {
const result = await this.app.version.satisfies('<=0.16.0-alpha.7');
const result = await this.app.version.satisfies('<=0.17.0-alpha.4');
if (!result) {
return;