poi-plugin-kai-planner 1.0.15 → 1.0.16

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": "poi-plugin-kai-planner",
3
- "version": "1.0.15",
3
+ "version": "1.0.16",
4
4
  "main": "index.js",
5
5
  "author": "aulu",
6
6
  "contributors": ["aulu"],
@@ -17,7 +17,7 @@
17
17
  },
18
18
  "poiPlugin": {
19
19
  "title": "改修规划",
20
- "description": "管理个人装备与改修计划。改修计划数据源来自明石工厂(https://akashi-list.me/)",
20
+ "description": "管理个人装备与改修计划。改修计划数据源来自 [明石工厂](https://akashi-list.me/) ",
21
21
  "icon": "tasks",
22
22
  "enableDebug": false,
23
23
  "dataSource": {
@@ -163,6 +163,7 @@ class AcquisitionTab extends React.Component {
163
163
  name: getEquipName(masterEquipsById, key),
164
164
  sortno: getEquipSortno(masterEquipsById, key),
165
165
  }))
166
+ .filter((item) => item.sortno > 0)
166
167
  .sort((a, b) => {
167
168
  if (a.sortno !== b.sortno) return a.sortno - b.sortno;
168
169
  return Number(a.id) - Number(b.id);
@@ -501,3 +502,5 @@ module.exports = AcquisitionTab;
501
502
 
502
503
 
503
504
 
505
+
506
+