You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by qi...@apache.org on 2021/09/24 03:51:39 UTC

[skywalking-rocketbot-ui] branch master updated: fix issue #521 (#541)

This is an automated email from the ASF dual-hosted git repository.

qiuxiafan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking-rocketbot-ui.git


The following commit(s) were added to refs/heads/master by this push:
     new c73ddde  fix issue #521 (#541)
c73ddde is described below

commit c73ddde078416f17574b066572741b6e92a9b69d
Author: jianglin1008 <fx...@126.com>
AuthorDate: Fri Sep 24 11:51:34 2021 +0800

    fix issue #521 (#541)
    
    Co-authored-by: 姜林 <ji...@wangxiaobao.com>
---
 src/views/components/common/common-selector.vue | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/views/components/common/common-selector.vue b/src/views/components/common/common-selector.vue
index ab0122d..a998197 100644
--- a/src/views/components/common/common-selector.vue
+++ b/src/views/components/common/common-selector.vue
@@ -60,8 +60,8 @@ limitations under the License. -->
           class="rk-common-opt ell"
           @click="handleSelect(i)"
           :class="{ active: i.key === value.key }"
-          v-for="i in filterData"
-          :key="i.key"
+          v-for="(i, idx) in filterData"
+          :key="idx"
         >
           {{ i.label || '' }}
         </div>