We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b85f70 commit 5b04682Copy full SHA for 5b04682
1 file changed
client/src/vue_components/show/config/cues/ScriptLineCueEditor.vue
@@ -78,7 +78,7 @@
78
{{ characterGroups.find((char) => (char.id === part.character_group_id)).name }}
79
</b>
80
</template>
81
- <b v-else> </b>
+ <b v-else-if="needsHeadingsAny"> </b>
82
<p
83
class="viewable-line"
84
:class="{'cut-line-part': linePartCuts.indexOf(part.id) !== -1}"
@@ -356,6 +356,9 @@ export default {
356
}, this);
357
return ret;
358
},
359
+ needsHeadingsAny() {
360
+ return this.needsHeadings.some((x) => (x === true));
361
+ },
362
needsActSceneLabel() {
363
if (this.previousLine == null) {
364
return true;
0 commit comments