Skip to content

Commit 236ee0a

Browse files
committed
style: 补全行尾分号 统一代码风格
1 parent fe0f7a0 commit 236ee0a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/Player/MainAMLyric.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ const amLyricsData = computed<LyricLine[]>(() => {
8585
const jumpSeek = (line: any) => {
8686
if (!line?.line?.lyricLine?.startTime) return;
8787
const time = msToS(line.line.lyricLine.startTime);
88-
const offsetSeconds = statusStore.getSongOffset(musicStore.playSong?.id)
88+
const offsetSeconds = statusStore.getSongOffset(musicStore.playSong?.id);
8989
player.setSeek(time - offsetSeconds);
9090
player.play();
9191
};

src/components/Player/MainLyric.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ const getYrcStyle = (wordData: LyricContentType, lyricIndex: number) => {
276276
const jumpSeek = (time: number) => {
277277
if (!time) return;
278278
lrcMouseStatus.value = false;
279-
const offsetSeconds = statusStore.getSongOffset(musicStore.playSong?.id)
279+
const offsetSeconds = statusStore.getSongOffset(musicStore.playSong?.id);
280280
player.setSeek(time - offsetSeconds);
281281
player.play();
282282
};

0 commit comments

Comments
 (0)