Merge branch 'main' into T-3344

This commit is contained in:
Zeke Zhang 2024-03-07 18:33:46 +08:00
commit ed61033ead
3 changed files with 27 additions and 1 deletions

View File

@ -193,7 +193,7 @@ export const useCreateActionProps = () => {
const { t } = useTranslation();
const { updateAssociationValues } = useFormBlockContext();
const collectValues = useCollectValuesToSubmit();
const action = record.isNew ? 'create' : 'update';
const action = record.isNew ? actionField.componentProps.saveMode || 'create' : 'update';
const filterKeys = actionField.componentProps.filterKeys?.checked || [];
return {
async onClick() {

View File

@ -7,6 +7,7 @@ const availableActions: {
displayName: '{{t("Add new")}}',
type: 'new-data',
onNewRecord: true,
aliases: ['create', 'firstOrCreate', 'updateOrCreate'],
allowConfigureFields: true,
},
// import: {

View File

@ -0,0 +1,25 @@
import { Model, Repository } from '@nocobase/database';
import { Migration } from '@nocobase/server';
export default class extends Migration {
on = 'afterLoad'; // 'beforeLoad' or 'afterLoad'
appVersion = '<0.20.0-alpha.6';
async up() {
const r = this.db.getRepository<Repository>('fields');
const fields: Model[] = await r.find({
filter: {
interface: 'attachment',
},
});
for (const field of fields) {
const options = field.get('options');
if (options.target !== 'attachments') {
options.target = 'attachments';
field.set('options', options);
field.changed('options', true);
await field.save();
}
}
}
}