eservices-core 1.0.424 → 1.0.426

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.
Files changed (2) hide show
  1. package/dist/index.js +4 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * eservices-core v1.0.424
2
+ * eservices-core v1.0.426
3
3
  * (c) 2022 ESERVICES
4
4
  */
5
5
  'use strict';
@@ -5453,7 +5453,8 @@ var script$6 = /*#__PURE__*/ vue.defineComponent({
5453
5453
  const props = __props;
5454
5454
  const refImage = vue.ref();
5455
5455
  vue.onMounted(() => {
5456
- refImage.value.src = props.src;
5456
+ if (refImage.value)
5457
+ refImage.value.src = props.src;
5457
5458
  refImage.value.onerror = function () {
5458
5459
  if (props.default)
5459
5460
  refImage.value.src = props.default;
@@ -6036,7 +6037,7 @@ class ruleValidationService {
6036
6037
 
6037
6038
  class openService {
6038
6039
  static getConfiguration() {
6039
- return Request(`/open-api/configuration`, {
6040
+ return Request(`/open-api/webserver-configuration`, {
6040
6041
  method: 'GET',
6041
6042
  headers: {
6042
6043
  'Content-Type': 'application/json',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eservices-core",
3
- "version": "1.0.424",
3
+ "version": "1.0.426",
4
4
  "description": "Core library",
5
5
  "author": "",
6
6
  "scripts": {