We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 315c781 commit 6802928Copy full SHA for 6802928
client/packages/lowcoder/src/components/CompName.tsx
@@ -115,6 +115,12 @@ export const CompName = (props: Iprops) => {
115
116
117
if (compInfo.isRemote) {
118
+ // Falk: Displaying the current version of the component
119
+ items.push({
120
+ text: trans("history.currentVersion") + ": " + compInfo.packageVersion,
121
+ onClick: () => {
122
+ },
123
+ });
124
items.push({
125
text: trans("history.currentVersion") + ": " + compInfo.packageVersion,
126
onClick: () => {
@@ -127,6 +133,7 @@ export const CompName = (props: Iprops) => {
127
133
128
134
handleUpgrade();
129
135
},
136
+
130
137
});
131
138
}
132
139
0 commit comments