<template> <div class="panel panel-default"> <div class="panel-body"> <table> <tr v-for="(row, index) in contributionRows" :key="index"> <th v-if="index === 0"></th> <th v-if="weekdayName(index)" rowspan="2">{{weekdayName(index)}}</th> <td v-for="(cell, cellIndex) in row" :key="cellIndex" v-bind:class="cell.getClass()" data-toggle="tooltip" data-animation="false" data-container="body" data-placeme

