We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9016da1 commit a9e37a3Copy full SHA for a9e37a3
client/packages/lowcoder/src/comps/comps/preLoadComp/actions/appConfiguration.ts
@@ -69,7 +69,12 @@ export const publishAppAction: ActionConfig = {
69
return;
70
}
71
72
- const response = await ApplicationApi.publishApplication({ applicationId });
+ const response = await ApplicationApi.publishApplication({
73
+ applicationId,
74
+ request: {
75
+ tag: "1.0.0"
76
+ }
77
+ });
78
79
if (response.data.success) {
80
message.success('Application published successfully');
0 commit comments