data-mappingはdata-updateへ変更

This commit is contained in:
xiaozhe.ma
2024-07-11 23:20:33 +09:00
parent 0443257f86
commit 14287b6948
5 changed files with 8 additions and 90 deletions

View File

@@ -69,12 +69,12 @@ interface App {
createdate: string;
}
export class DataMappingAction implements IAction {
export class DataUpdateAction implements IAction {
name: string;
actionProps: IActionProperty[];
dataMappingProps: Props;
constructor() {
this.name = "データマッピング";
this.name = "データ更新";
this.actionProps = [];
this.dataMappingProps = {} as Props;
this.register();
@@ -141,7 +141,7 @@ export class DataMappingAction implements IAction {
}
}
new DataMappingAction();
new DataUpdateAction();
const getContextVarByPath = (obj: any, path: string) => {
return path.split(".").reduce((o, k) => (o || {})[k], obj);