このコミットが含まれているのは:
2026-06-22 21:24:55 +09:00
コミット d3af4563ca
12個のファイルの変更309行の追加47行の削除
+1 -1
ファイルの表示
@@ -33,7 +33,7 @@ const tagsToStr = (tags: TagWithSections[]): string => {
return [...(new Set (result.map (t =>
`${ t.name }${ t.sections
.map (s => `[${ msToTime (s.beginMs) }-${ msToTime (s.endMs) }]`)
.map (s => `[${ msToTime (s.beginMs) }-${ s.endMs == null ? '' : msToTime (s.endMs) }]`)
.join ('') }`)))].join (' ')
}
+1 -1
ファイルの表示
@@ -221,7 +221,7 @@ export type TagVersion = {
createdByUser: { id: number; name: string | null } | null }
export type TagWithSections = Tag & { sections: { beginMs: number
endMs: number }[]
endMs: number | null }[]
children: TagWithSections[] }
export type Theatre = {