Commit eddd5e0b authored by Jose Vargas's avatar Jose Vargas

Address code style concerns

parent 12e82066
......@@ -23,7 +23,7 @@ export default {
},
computed: {
minutesUsageDataByMonth() {
return this?.ciMinutesUsage.map((cur) => [cur.month, cur.minutes]);
return this.ciMinutesUsage.map((cur) => [cur.month, cur.minutes]);
},
},
};
......
......@@ -83,7 +83,7 @@ export default {
v-for="(month, index) in months"
:key="index"
:is-checked="selectedMonth === month"
:is-check-item="true"
is-check-item
@click="changeSelectedMonth(month)"
>
{{ month }}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment