diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2020-02-06 14:23:01 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2020-02-06 14:23:01 +0900 |
| commit | 1b88a7bc03ac45c3c0eea9408a700ffd2f72d5d0 (patch) | |
| tree | 3d6e7204e80fef4c728bf6a0e44aee2a6813969d /src/client/pages/instance/queue.queue.vue | |
| parent | 12.0.0 (diff) | |
| download | sharkey-1b88a7bc03ac45c3c0eea9408a700ffd2f72d5d0.tar.gz sharkey-1b88a7bc03ac45c3c0eea9408a700ffd2f72d5d0.tar.bz2 sharkey-1b88a7bc03ac45c3c0eea9408a700ffd2f72d5d0.zip | |
Fix #5842 and refactoring
Diffstat (limited to 'src/client/pages/instance/queue.queue.vue')
| -rw-r--r-- | src/client/pages/instance/queue.queue.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/pages/instance/queue.queue.vue b/src/client/pages/instance/queue.queue.vue index 6cd2f2a332..710f4ec099 100644 --- a/src/client/pages/instance/queue.queue.vue +++ b/src/client/pages/instance/queue.queue.vue @@ -12,7 +12,7 @@ </div> <div class="_content" style="max-height: 180px; overflow: auto;"> <sequential-entrance :delay="15" v-if="jobs.length > 0"> - <div v-for="(job, i) in jobs" :key="job[0]" :data-index="i"> + <div v-for="(job, i) in jobs" :key="job[0]"> <span>{{ job[0] }}</span> <span style="margin-left: 8px; opacity: 0.7;">({{ job[1] | number }} jobs)</span> </div> |