@jx3box/jx3box-editor 1.9.1 → 1.9.2

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": "@jx3box/jx3box-editor",
3
- "version": "1.9.1",
3
+ "version": "1.9.2",
4
4
  "description": "JX3BOX Article & Editor",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -124,13 +124,13 @@
124
124
  show-icon
125
125
  ></el-alert>
126
126
  </el-tab-pane>
127
- <el-tab-pane label="技能连招" name="combo">
127
+ <el-tab-pane label="连招" name="combo">
128
128
  <span slot="label" class="u-tab-label">
129
129
  <i
130
- class="el-icon-tickets"
130
+ class="el-icon-lollipop"
131
131
  style="margin-right: 5px"
132
132
  ></i>
133
- <b>技能连招</b>
133
+ <b>连招</b>
134
134
  </span>
135
135
  <ComboVue :query="query" ref="combo" :client="comboClient"></ComboVue>
136
136
  </el-tab-pane>
@@ -246,7 +246,7 @@ export default {
246
246
  renderVal() {
247
247
  const {selected} = this;
248
248
  return `<ul class="e-skill-combo w-skill-combo">${selected.map(item => {
249
- return `<li class="w-skill-combo-item">${item.SkillID},${item.Name},${item.IconID},{gcd:${item.WithoutGcd ? 1: 0}}</li>`
249
+ return `<li class="w-skill-combo-item">${item.SkillID},${item.Name},${item.IconID},{gcd:${item.WithoutGcd ? 0: 1}}</li>`
250
250
  })}</ul>`
251
251
  },
252
252
  },