Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix channel toopltip to be accurate #3938

Merged
merged 2 commits into from
Oct 22, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions ui/core/components/individual_sim_ui/apl_actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -366,10 +366,10 @@ const actionKindFactories: {[f in NonNullable<APLActionKind>]: ActionKindConfig<
<p>The channel will be interrupted only if all of the following are true:</p>
<ul>
<li>Immediately following a tick of the channel</li>
<li>The <b>Interrupt If</b> condition is <b>True</b></li>
<li>A higher-priority action in the APL list is available</li>
<li>The <b>Interrupt If</b> condition evaluates to <b>True</b></li>
<li>Another action in the APL list is available</li>
</ul>
<p>Note that if you simply want to allow higher-priority actions to interrupt the channel, set <b>Interrupt If</b> to <b>True</b>.</p>
<p>Note that if you simply want to allow other actions to interrupt the channel, set <b>Interrupt If</b> to <b>True</b>.</p>
`,
newValue: () => APLActionChannelSpell.create({
interruptIf: {
Expand Down
Loading