add message

This commit is contained in:
Julien Calixte
2023-04-21 17:00:02 +02:00
parent 19525be1fc
commit a90d3620d6

View File

@@ -84,7 +84,7 @@ whenever(logicAnd(notUsingInput, n), () => {
}) })
whenever(logicAnd(notUsingInput, p), () => { whenever(logicAnd(notUsingInput, p), () => {
recordStore.pause(props.tasKId) recordStore.pause(props.taskId)
}) })
whenever(logicAnd(notUsingInput, s), () => { whenever(logicAnd(notUsingInput, s), () => {
@@ -136,4 +136,9 @@ onUnmounted(() => {
<img src="/icons/recycle.svg" alt="reset" /> <img src="/icons/recycle.svg" alt="reset" />
</button> </button>
</div> </div>
<div class="message">
<p><kbd>s</kbd>: start record</p>
<p><kbd>n</kbd>: next step</p>
<p><kbd>p</kbd>: pause</p>
</div>
</template> </template>