Merge pull request #4833 from tehciolo/tehciolo/intentionality
Remove unnecessary renaming
This commit is contained in:
commit
e4ebe14340
3 changed files with 3 additions and 1 deletions
|
@ -66,6 +66,7 @@ module.exports = {
|
||||||
'no-unused-expressions': ['off'],
|
'no-unused-expressions': ['off'],
|
||||||
'@typescript-eslint/no-unused-expressions': ['error', { 'allowShortCircuit': true, 'allowTernary': true, 'allowTaggedTemplates': true }],
|
'@typescript-eslint/no-unused-expressions': ['error', { 'allowShortCircuit': true, 'allowTernary': true, 'allowTaggedTemplates': true }],
|
||||||
'no-unused-private-class-members': ['error'],
|
'no-unused-private-class-members': ['error'],
|
||||||
|
'no-useless-rename': ['error'],
|
||||||
'no-useless-constructor': ['off'],
|
'no-useless-constructor': ['off'],
|
||||||
'@typescript-eslint/no-useless-constructor': ['error'],
|
'@typescript-eslint/no-useless-constructor': ['error'],
|
||||||
'no-var': ['error'],
|
'no-var': ['error'],
|
||||||
|
|
|
@ -66,6 +66,7 @@
|
||||||
- [Fishbigger](https://github.com/fishbigger)
|
- [Fishbigger](https://github.com/fishbigger)
|
||||||
- [sleepycatcoding](https://github.com/sleepycatcoding)
|
- [sleepycatcoding](https://github.com/sleepycatcoding)
|
||||||
- [TheMelmacian](https://github.com/TheMelmacian)
|
- [TheMelmacian](https://github.com/TheMelmacian)
|
||||||
|
- [tehciolo](https://github.com/tehciolo)
|
||||||
|
|
||||||
# Emby Contributors
|
# Emby Contributors
|
||||||
|
|
||||||
|
|
|
@ -444,7 +444,7 @@ function executeCommand(item, id, options) {
|
||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
case 'multiSelect':
|
case 'multiSelect':
|
||||||
import('./multiSelect/multiSelect').then(({ startMultiSelect: startMultiSelect }) => {
|
import('./multiSelect/multiSelect').then(({ startMultiSelect }) => {
|
||||||
const card = dom.parentWithClass(options.positionTo, 'card');
|
const card = dom.parentWithClass(options.positionTo, 'card');
|
||||||
startMultiSelect(card);
|
startMultiSelect(card);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue