mirror of
https://github.com/kemko/nomad.git
synced 2026-01-06 18:35:44 +03:00
35 lines
1011 B
Handlebars
35 lines
1011 B
Handlebars
{{!
|
||
Copyright (c) HashiCorp, Inc.
|
||
SPDX-License-Identifier: BUSL-1.1
|
||
~}}
|
||
|
||
<section class="das-dismissed {{if this.explanationUnderstood 'understood'}}">
|
||
{{#if this.explanationUnderstood}}
|
||
<h3 {{did-insert this.proceedAutomatically}}>Recommendation dismissed</h3>
|
||
{{else}}
|
||
<section>
|
||
<h3>Recommendation dismissed</h3>
|
||
|
||
<p>Nomad will not apply these resource change recommendations.</p>
|
||
|
||
<p>To never get recommendations for this task group again, disable dynamic application sizing in the job definition.</p>
|
||
</section>
|
||
|
||
<section class="actions">
|
||
<button
|
||
data-test-understood
|
||
class='button is-info'
|
||
type='button'
|
||
{{on 'click' this.understoodClicked}}
|
||
>Understood</button>
|
||
<label>
|
||
<input
|
||
type="checkbox"
|
||
checked={{this.dismissInTheFuture}}
|
||
onchange={{toggle-action 'dismissInTheFuture' this}}
|
||
/>
|
||
Don’t show this again
|
||
</label>
|
||
</section>
|
||
{{/if}}
|
||
</section> |