refactor(hide-columns): conform to LS naming scheme

This commit is contained in:
Sarah Vaupel 2019-11-26 17:53:53 +01:00 committed by Gregor Kleen
parent 42dd41f9d6
commit bc023f5bfb

View File

@ -16,7 +16,7 @@ const HIDE_BUTTON_FADE_DELAY = 3000;
})
export class HideColumns {
_storageManager = new StorageManager('uw-hide-columns');
_storageManager = new StorageManager('HIDE_COLUMNS');
_element;
_elementWrapper;
@ -141,7 +141,7 @@ export class HideColumns {
thIdent = th.cellIndex;
}
return `${handlerIdent}-${tIdent}-${thIdent}`;
return `${handlerIdent}__${tIdent}__${thIdent}`;
}
}