darrenjennings / vue-autosuggest

🔍 Vue autosuggest component.
https://darrenjennings.github.io/vue-autosuggest
MIT License
621 stars 91 forks source link

Converts camelCased props to kebab-cased #43

Closed philipzaengle closed 6 years ago

philipzaengle commented 6 years ago

HTML attribute names are case-insensitive, so browsers will interpret any uppercase characters as lowercase. That means when we're in-DOM templates, camelCased prop names need to use their kebab-cased (hyphen-delimited) equivalents. I've converted the CamelCase instances to kebab-cased to avoid developer confusion.

codecov[bot] commented 6 years ago

Codecov Report

Merging #43 into master will not change coverage. The diff coverage is n/a.

Impacted file tree graph

@@           Coverage Diff           @@
##           master      #43   +/-   ##
=======================================
  Coverage   84.14%   84.14%           
=======================================
  Files           1        1           
  Lines         164      164           
  Branches       48       48           
=======================================
  Hits          138      138           
  Misses          8        8           
  Partials       18       18

Continue to review full report at Codecov.

Legend - Click here to learn more Δ = absolute <relative> (impact), ø = not affected, ? = missing data Powered by Codecov. Last update 8420a88...c210405. Read the comment docs.

darrenjennings commented 6 years ago

Thanks for your contribution @philipzaengle!