Skip to content

Commit a9e37a3

Browse files
committed
fix type error publishApplication action
1 parent 9016da1 commit a9e37a3

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

client/packages/lowcoder/src/comps/comps/preLoadComp/actions/appConfiguration.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,12 @@ export const publishAppAction: ActionConfig = {
6969
return;
7070
}
7171

72-
const response = await ApplicationApi.publishApplication({ applicationId });
72+
const response = await ApplicationApi.publishApplication({
73+
applicationId,
74+
request: {
75+
tag: "1.0.0"
76+
}
77+
});
7378

7479
if (response.data.success) {
7580
message.success('Application published successfully');

0 commit comments

Comments
 (0)