askbot-dragon 1.8.10-beta → 1.8.11-beta

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": "askbot-dragon",
3
- "version": "1.8.10-beta",
3
+ "version": "1.8.11-beta",
4
4
  "scripts": {
5
5
  "serve": "vue-cli-service serve",
6
6
  "build": "vue-cli-service build",
@@ -24,7 +24,7 @@
24
24
  </div>
25
25
  </div>
26
26
  </div>
27
- <div class="answerButton" :class="disabled || isDisabled || !checkImage ? 'disabledButton' : ''">
27
+ <div class="answerButton" v-if="msg.content.handleSettings && msg.content.handleSettings.length > 0" :class="disabled || isDisabled || !checkImage ? 'disabledButton' : ''">
28
28
  <div class="buttonText"
29
29
  v-for="(item,index) in msg.content.handleSettings"
30
30
  :key="index"
@@ -148,6 +148,9 @@ export default {
148
148
  .checkIcon{
149
149
  background-color: #edf2fc!important;
150
150
  }
151
+ .centerIcon{
152
+ background: #366aff!important;
153
+ }
151
154
  }
152
155
  }
153
156
  .disabledButton{
@@ -21,7 +21,7 @@
21
21
  </el-checkbox>
22
22
  </el-checkbox-group>
23
23
  </div>
24
- <div class="answerButton" :class="disabled || isDisabled || checkList.length === 0 ? 'disabledButton' : ''">
24
+ <div class="answerButton" v-if="msg.content.handleSettings && msg.content.handleSettings.length > 0" :class="disabled || isDisabled || checkList.length === 0 ? 'disabledButton' : ''">
25
25
  <div class="buttonText"
26
26
  v-for="(item,index) in msg.content.handleSettings"
27
27
  :key="index"
@@ -94,6 +94,7 @@ export default {
94
94
  display: flex;
95
95
  align-items: center;
96
96
  color: #000000;
97
+ white-space: pre-line;
97
98
  }
98
99
  }
99
100
  }
@@ -46,7 +46,7 @@
46
46
  width="120">
47
47
  </el-table-column>
48
48
  </el-table>
49
- <div class="handleButton" :class="disabled || isDisabled || selection.length === 0 ? 'disabledButton' : ''">
49
+ <div class="handleButton" v-if="msg.content.handleSettings && msg.content.handleSettings.length > 0" :class="disabled || isDisabled || selection.length === 0 ? 'disabledButton' : ''">
50
50
  <div class="buttonText"
51
51
  v-for="(item,index) in msg.content.handleSettings"
52
52
  :key="index"