Skip to content

Commit

Permalink
#104364 - fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ofrankowska committed Apr 5, 2024
1 parent 91dce59 commit bd36c4b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion view/adminhtml/web/css/source/blocks/_panel.less
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
padding-left: 5px;
}

&__buttom {
&__button {
border-color: transparent;
color: @primary__color;
background-color: transparent;
Expand Down
4 changes: 2 additions & 2 deletions view/adminhtml/web/vue/app.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<div>
<button
class="panel__buttom panel__buttom--append"
class="panel__button panel__button--append"
:title="config.translation.append"
@click.prevent="addNode(list)"
/>
Expand Down Expand Up @@ -47,7 +47,7 @@
>
{{ config.translation.click }}
<button
class="panel__buttom panel__buttom--append"
class="panel__button panel__button--append"
:title="config.translation.append"
@click.prevent="addNode(list)"
/>
Expand Down
10 changes: 5 additions & 5 deletions view/adminhtml/web/vue/nested-list.vue
Original file line number Diff line number Diff line change
Expand Up @@ -39,21 +39,21 @@
<div>
<button
type="button"
class="panel__buttom panel__buttom--edit"
class="panel__button panel__button--edit"
:title="config.translation.edit"
@click="editNode"
/>

<button
type="button"
class="panel__buttom panel__buttom--append"
class="panel__button panel__button--append"
:title="config.translation.append"
@click="appendEvent(list, index)"
/>

<button
type="button"
class="panel__buttom panel__buttom--duplicate"
class="panel__button panel__button--duplicate"
:title="config.translation.duplicate"
@click="duplicateEvent(list, index)"
>
Expand All @@ -74,7 +74,7 @@

<button
type="button"
class="panel__buttom panel__buttom--delete"
class="panel__button panel__button--delete"
:title="config.translation.delete"
@click="deleteEvent(list, index)"
/>
Expand Down Expand Up @@ -120,7 +120,7 @@
>
{{ config.translation.click }}
<button
class="panel__buttom panel__buttom--append"
class="panel__button panel__button--append"
:title="config.translation.append"
@click.prevent="appendEvent(list, index)"
/>
Expand Down

0 comments on commit bd36c4b

Please sign in to comment.