Skip to content

Commit

Permalink
fix: shorthand not working when building.
Browse files Browse the repository at this point in the history
related to vuejs/core#4790
  • Loading branch information
moetazaneta committed Oct 29, 2021
1 parent ac333ec commit 8266216
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/app-book-editable.vue
Expand Up @@ -131,12 +131,12 @@ function handleSave() {
:value="author"
@change="handleAuthorChange(i, $event)"
>
<app-button icon type="transparent" @click="deleteAuthor(i)">
<app-button :icon="true" type="transparent" @click="deleteAuthor(i)">
<icon-carbon:close />
</app-button>
</div>
</template>
<app-button icon type="secondary" @click="addEmptyAuthor">
<app-button :icon="true" type="secondary" @click="addEmptyAuthor">
<icon-carbon:add />
</app-button>
</app-book-editable-entry>
Expand Down

0 comments on commit 8266216

Please sign in to comment.