vue2-client 1.15.82 → 1.15.83

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": "vue2-client",
3
- "version": "1.15.82",
3
+ "version": "1.15.83",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve --no-eslint",
@@ -228,13 +228,13 @@
228
228
  <a-col
229
229
  :span="item.span"
230
230
  v-for="(item,index) in chartsConfigArray"
231
- :key="index"
231
+ :key="`${queryParamsName}-${index}`"
232
232
  style="height: 20rem; margin-bottom: 3rem">
233
233
  <div class="custom-chart-title" v-if="item.config.title">{{ item.config.title }}</div>
234
234
  <div class="custom-chart-desc" v-if="item.config.description">{{ item.config.description }}</div>
235
235
  <g2Charts
236
- :key="index"
237
- :chatsKey="index"
236
+ :key="`${queryParamsName}-${index}`"
237
+ :chatsKey="`${queryParamsName}-${index}`"
238
238
  :is-dev="env === 'dev'"
239
239
  :config="item.config"
240
240
  :requestParameters="requestParameters"/>