Skip to content

Commit

Permalink
Merge pull request #570 from iocanel/triage-review-hints
Browse files Browse the repository at this point in the history
Add hints in the triage review page
  • Loading branch information
geoand authored May 11, 2024
2 parents 84834f0 + 0cab542 commit f9aaee1
Showing 1 changed file with 19 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,27 @@ export class DemoReview extends LitElement {
return html`
<vaadin-horizontal-layout theme="spacing padding"
style="align-items: baseline">
${outcome}
<vaadin-vertical-layout theme="spacing padding"
style="align-items: baseline">
${outcome}
<p>Things you can try:</p>
<ul>
<li>
<a href="#" @click=${() => { this.review = "You are great! Keep up the good work!"; }}>You are great! Keep up the good work!</a><
/li>
<li>
<a href="#" @click=${() => { this.review = "You are thieves! I want my moeny back!"; }}>You are thieves! I want my moeny back!</a>
</li>
</ul>
</vaadin-vertical-layout>
</vaadin-horizontal-layout>
<vaadin-horizontal-layout theme="spacing padding"
style="align-items: baseline">
<vaadin-text-area
label="Write your review:"
.maxlength=1024
Expand Down Expand Up @@ -112,4 +129,4 @@ export class DemoReview extends LitElement {

}

customElements.define('demo-review', DemoReview);
customElements.define('demo-review', DemoReview);

0 comments on commit f9aaee1

Please sign in to comment.