View Issue Details

IDProjectCategoryView StatusLast Update
0017358MMW 5Extensions frameworkpublic2021-05-03 12:29
Reporterdrakinite Assigned To 
PrioritynormalSeveritytweakReproducibilityN/A
Status closedResolutionfixed 
Product Version5.0 
Target Version5.0.1Fixed in Version5.0 
Summary0017358: Addons panel: Capitalize the first letter of the categories in "Show" dropdown
DescriptionHaving 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(' ');
}

TagsNo tags attached.
Attached Files
image.png (12,066 bytes)   
image.png (12,066 bytes)   
Fixed in build2294

Relationships

related to 0017808 closedLudek Addons categories: Merge similar category names/words into one 

Activities

Ludek

2021-01-11 10:37

developer   ~0061274

Fixed in 2294

lowlander

2021-01-14 21:29

developer   ~0061339

Confirmed on 2294