Skip to content

Commit

Permalink
Consistent Capitalization
Browse files Browse the repository at this point in the history
  • Loading branch information
corsacca committed Dec 18, 2024
1 parent 589949a commit 952e40b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions dt-core/admin/components/setup-wizard-celebration.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ export class SetupWizardCelebration extends OpenLitElement {
<setup-wizard-controls
@next=${this.next}
@back=${this.back}
nextLabel="Close Wizard"
></setup-wizard-controls>
</div>
`;
Expand Down
4 changes: 2 additions & 2 deletions dt-core/admin/components/setup-wizard-controls.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ export class SetupWizardControls extends OpenLitElement {
${this.hideBack
? ''
: html`
<button @click=${this.back}>${this.backLabel ?? 'back'}</button>
<button @click=${this.back}>${this.backLabel ?? 'Back'}</button>
`}
<button @click=${this.next} class="btn-primary">
${this.nextLabel ?? 'next'}
${this.nextLabel ?? 'Next'}
${this.saving ? html`<span class="spinner light"></span>` : ''}
</button>
</div>
Expand Down
2 changes: 1 addition & 1 deletion dt-core/admin/components/setup-wizard-plugins.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ export class SetupWizardPlugins extends OpenLitElement {
</div>
<setup-wizard-controls
?hideBack=${this.firstStep}
nextLabel="install and activate selected plugins"
nextLabel="Install and Activate Selected Plugins"
@next=${this.next}
@back=${this.back}
></setup-wizard-controls>
Expand Down

0 comments on commit 952e40b

Please sign in to comment.