@konfuzio/document-validation-ui 0.1.57-dev.0 → 0.1.57

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@konfuzio/document-validation-ui",
3
- "version": "0.1.57-dev.0",
3
+ "version": "0.1.57",
4
4
  "repository": "git://github.com:konfuzio-ai/document-validation-ui.git",
5
5
  "main": "dist/app.js",
6
6
  "scripts": {
@@ -361,6 +361,13 @@ export default {
361
361
  });
362
362
  }
363
363
 
364
+ // Log app version
365
+ console.log(
366
+ `${this.removeBranding ? "" : require("../../package.json").name} ${
367
+ require("../../package.json").version
368
+ }`
369
+ );
370
+
364
371
  // locale config
365
372
  if (this.locale && this.locale !== "") {
366
373
  this.$i18n.locale = this.locale;
package/src/main.js CHANGED
@@ -8,11 +8,6 @@ import VueObserveVisibility from "vue-observe-visibility";
8
8
  import Icons from "./icons";
9
9
  import VueSplit from "vue-split-panel";
10
10
 
11
- // Log app version
12
- console.log(
13
- `${require("../package.json").name} ${require("../package.json").version}`
14
- );
15
-
16
11
  Vue.component("VueFontawesome", Icons);
17
12
  Vue.component("App", App);
18
13
  Vue.use(VueKonva);