Skip to content

Commit eecb72b

Browse files
authored
Merge pull request #707 from dreamteamprod/dev
Release 0.17.7
2 parents 1b113c1 + 499d620 commit eecb72b

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

client/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "client",
3-
"version": "0.17.6",
3+
"version": "0.17.7",
44
"private": true,
55
"scripts": {
66
"build": "vite build",

client/src/vue_components/show/live/ScriptLineViewer.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -359,6 +359,8 @@ export default {
359359
if (previousLine == null
360360
|| previousLine.line_parts.length !== this.line.line_parts.length) {
361361
ret.push(true);
362+
} else if (previousLine.act_id !== this.line.act_id || previousLine.scene_id !== this.line.scene_id) {
363+
ret.push(true);
362364
} else {
363365
const matchingIndex = previousLine.line_parts.find((prevPart) => (
364366
prevPart.part_index === part.part_index));

0 commit comments

Comments
 (0)