I have the following code and I've set the `:no-caret="true"` which works, but when I add the `dropleft` prop, the caret started showing up. ``` <b-dropdown class="sort-button" dropleft :no-caret="true"> <template slot="button-content"> <font-awesome-icon icon="sort" /> </template> <b-dropdown-item>First Action</b-dropdown-item> <b-dropdown-item>Second Action</b-dropdown-item> <b-dropdown-item>Third Action</b-dropdown-item> <b-dropdown-divider /> <b-dropdown-item active>Active action</b-dropdown-item> <b-dropdown-item disabled>Disabled action</b-dropdown-item> </b-dropdown> ```