mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 14:26:36 +00:00
Merge branch 'main' into T-3344
This commit is contained in:
commit
ed61033ead
@ -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() {
|
||||
|
@ -7,6 +7,7 @@ const availableActions: {
|
||||
displayName: '{{t("Add new")}}',
|
||||
type: 'new-data',
|
||||
onNewRecord: true,
|
||||
aliases: ['create', 'firstOrCreate', 'updateOrCreate'],
|
||||
allowConfigureFields: true,
|
||||
},
|
||||
// import: {
|
||||
|
@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user