n20-common-lib 2.2.33 → 2.2.34

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": "n20-common-lib",
3
- "version": "2.2.33",
3
+ "version": "2.2.34",
4
4
  "private": false,
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -18,20 +18,24 @@
18
18
  </div>
19
19
  <div v-else class="flex-box">
20
20
  <div class="result-left-name" :class="item | typeF(status, 'color-')">{{ $lc(item.resultName) }}</div>
21
- <div v-title="item.assignee" class="flex-box n20-worker m-r-s text-ellipsis" :show-overflow-tooltip="true">
21
+ <div
22
+ v-title="item.assignee"
23
+ class="flex-box flex-item n20-worker m-r-s text-ellipsis"
24
+ :show-overflow-tooltip="true"
25
+ >
22
26
  <div
23
27
  v-title="item.memberName"
24
28
  :show-overflow-tooltip="true"
25
- class="n20-worker m-r-s text-ellipsis"
26
- style="min-width: 250px"
29
+ class="flex-item n20-worker m-r-s text-ellipsis"
30
+ style="width: 250px"
27
31
  >
28
32
  {{ item.memberName }}
29
33
  </div>
30
34
  <div
31
35
  v-title="item.roleName"
32
- class="n20-worker text-ellipsis"
36
+ class="flex-item n20-worker text-ellipsis"
33
37
  :show-overflow-tooltip="true"
34
- style="min-width: 250px"
38
+ style="width: 250px"
35
39
  >
36
40
  {{ item.roleName }}
37
41
  </div>
@@ -16,7 +16,7 @@ export default {
16
16
  filters: {
17
17
  keyF({ path, query = {} }) {
18
18
  path = path.replace(/^\//, routerBase)
19
- return path + '^' + JSON.stringify({ ...query, _fromNo: undefined }) + '^' + window._tab_route_key[path]
19
+ return path + '^' + JSON.stringify({ ...query, _fromNo: undefined }) + '^' + (window._tab_route_key[path] || 0)
20
20
  }
21
21
  },
22
22
  props: {
@@ -51,7 +51,7 @@ export default {
51
51
  },
52
52
  filters: {
53
53
  keyF({ path, query = {} }) {
54
- return path + '^' + JSON.stringify({ ...query, _fromNo: undefined }) + '^' + window._tab_route_key[path]
54
+ return path + '^' + JSON.stringify({ ...query, _fromNo: undefined }) + '^' + (window._tab_route_key[path] || 0)
55
55
  }
56
56
  },
57
57
  props: {
@@ -51,7 +51,7 @@ export default {
51
51
  },
52
52
  filters: {
53
53
  keyF({ path, query = {} }) {
54
- return path + '^' + JSON.stringify({ ...query, _fromNo: undefined }) + '^' + window._tab_route_key[path]
54
+ return path + '^' + JSON.stringify({ ...query, _fromNo: undefined }) + '^' + (window._tab_route_key[path] || 0)
55
55
  }
56
56
  },
57
57
  props: {