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 6f1d833 commit c628487Copy full SHA for c628487
src/components/DatabaseConfigApp.tsx
@@ -13,6 +13,7 @@ import {
13
kafkaConfigFields,
14
openSearchConfigFields
15
} from '../config';
16
+import { VERSION } from '../version';
17
18
// Calculate configuration option counts for each database type
19
const configCounts = {
@@ -174,6 +175,8 @@ const DatabaseConfigApp = () => {
174
175
>
176
View on GitHub
177
</a>
178
+ <span className="mx-2">•</span>
179
+ <span className="text-gray-500">v{VERSION}</span>
180
</p>
181
</div>
182
src/version.ts
@@ -0,0 +1,3 @@
1
+// This file is automatically updated by our release process
2
+export const VERSION = '1.4.0';
3
+export const BUILD_DATE = new Date().toISOString();
0 commit comments