All files / ee/app/assets/javascripts/boards/components swimlanes_loading_skeleton.vue

100% Statements 1/1
100% Branches 0/0
100% Functions 0/0
100% Lines 1/1

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20  2x                                    
<script>
import BoardCardLoadingSkeleton from '~/boards/components/board_card_loading_skeleton.vue';
 
export default {
  components: {
    BoardCardLoadingSkeleton,
  },
};
</script>
 
<template>
  <div class="gl-px-3">
    <div v-for="i in 3" :key="i" class="gl-mt-6 gl-bg-gray-100 gl-display-flex gl-rounded-base">
      <div v-for="j in 4" :key="j" class="gl-px-3 gl-pt-3">
        <board-card-loading-skeleton />
      </div>
    </div>
  </div>
</template>