@jx3box/jx3box-editor 1.9.3 → 1.9.4

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.
@@ -14,7 +14,6 @@ function renderCombo(selector = ".e-skill-combo .w-skill-combo-item") {
14
14
 
15
15
 
16
16
  const _extend = extend ? JSON.parse(extend) : null;
17
- console.log(_extend.gcd)
18
17
 
19
18
  // 渲染
20
19
  let code = `
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jx3box/jx3box-editor",
3
- "version": "1.9.3",
3
+ "version": "1.9.4",
4
4
  "description": "JX3BOX Article & Editor",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -218,7 +218,7 @@ export default {
218
218
  this.$contextmenu({
219
219
  items: [
220
220
  {
221
- label: !skill?.WithoutGcd ? "设置为无GCD技能" : "取消无GCD技能",
221
+ label: !skill?.WithoutGcd ? "设置为无GCD技能" : "设置为有GCD技能",
222
222
  onClick: () => {
223
223
  this.$set(skill, "WithoutGcd", !skill.WithoutGcd);
224
224
  },