View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0017358 | MMW 5 | Extensions framework | public | 2021-01-10 21:03 | 2021-05-03 12:29 |
Reporter | drakinite | Assigned To | |||
Priority | normal | Severity | tweak | Reproducibility | N/A |
Status | closed | Resolution | fixed | ||
Product Version | 5.0 | ||||
Target Version | 5.0.1 | Fixed in Version | 5.0 | ||
Summary | 0017358: Addons panel: Capitalize the first letter of the categories in "Show" dropdown | ||||
Description | Having the categories under the "Show" dropdown (e.g. skin, general, visualization, etc.) all-lowercase has a not-so-great appearance to the end-user. The categories are already caps-insensitive, so making the visual tweak would probably be trivial. Change: "skin" to "Skin" "layout" to "Layout" "sample custom category" to "Sample Custom Category" function toCaps(str){ let split = str.split(' '); let ret = []; for (var s of split){ let first = s[0].toUpperCase(); let rest = s.substring(1, s.length).toLowerCase(); ret.push(first + rest); } return ret.join(' '); } | ||||
Tags | No tags attached. | ||||
Attached Files | |||||
Fixed in build | 2294 | ||||