Skip to content

Commit 905597b

Browse files
committed
fix linting
1 parent f89063e commit 905597b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

web_src/js/components/RepoActivityTopAuthors.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<script lang="ts" setup>
22
import {VueBarGraph} from 'vue-bar-graph';
3-
import {computed, createApp, onMounted, ref} from 'vue';
3+
import {computed, onMounted, ref} from 'vue';
44
55
const colors = ref({
66
barColor: 'green',

web_src/js/components/RepoRecentCommits.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import {
1414
startDaysBetween,
1515
firstStartDateAfterDate,
1616
fillEmptyStartDaysWithZeroes,
17-
DayData,
17+
type DayData,
1818
} from '../utils/time.ts';
1919
import {chartJsColors} from '../utils/color.ts';
2020
import {sleep} from '../utils.ts';

web_src/js/features/repo-common.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {POST} from '../modules/fetch.ts';
44
import {showErrorToast} from '../modules/toast.ts';
55
import {sleep} from '../utils.ts';
66
import RepoActivityTopAuthors from '../components/RepoActivityTopAuthors.vue';
7-
import { createApp } from 'vue';
7+
import {createApp} from 'vue';
88

99
async function onDownloadArchive(e) {
1010
e.preventDefault();

0 commit comments

Comments
 (0)