buttons: Use snake_case for the button handlebars template filenames.

This renames the button handlebars template filenames to follow the
snake_case naming convention used throughout the codebase.
This commit is contained in:
Sayam Samal
2025-01-28 23:37:13 +05:30
committed by Tim Abbott
parent 02c4d9c4ae
commit c05bfba151
3 changed files with 3 additions and 3 deletions

View File

@@ -5,13 +5,13 @@
<span class="banner-action-buttons">
{{#each buttons}}
{{#if this.intent}}
{{> action-button .}}
{{> action_button .}}
{{else}}
{{> action-button . intent=../intent}}
{{> action_button . intent=../intent}}
{{/if}}
{{/each}}
</span>
{{#if close_button}}
{{> icon-button custom_classes="banner-close-action banner-close-button" icon="close" intent=intent}}
{{> icon_button custom_classes="banner-close-action banner-close-button" icon="close" intent=intent}}
{{/if}}
</div>