Merge pull request #4833 from tehciolo/tehciolo/intentionality

Remove unnecessary renaming
This commit is contained in:
Bill Thornton
2023-10-05 08:59:58 -04:00
committed by GitHub
3 changed files with 3 additions and 1 deletions
+1
View File
@@ -66,6 +66,7 @@ module.exports = {
'no-unused-expressions': ['off'],
'@typescript-eslint/no-unused-expressions': ['error', { 'allowShortCircuit': true, 'allowTernary': true, 'allowTaggedTemplates': true }],
'no-unused-private-class-members': ['error'],
'no-useless-rename': ['error'],
'no-useless-constructor': ['off'],
'@typescript-eslint/no-useless-constructor': ['error'],
'no-var': ['error'],
+1
View File
@@ -66,6 +66,7 @@
- [Fishbigger](https://github.com/fishbigger)
- [sleepycatcoding](https://github.com/sleepycatcoding)
- [TheMelmacian](https://github.com/TheMelmacian)
- [tehciolo](https://github.com/tehciolo)
# Emby Contributors
+1 -1
View File
@@ -444,7 +444,7 @@ function executeCommand(item, id, options) {
});
break;
case 'multiSelect':
import('./multiSelect/multiSelect').then(({ startMultiSelect: startMultiSelect }) => {
import('./multiSelect/multiSelect').then(({ startMultiSelect }) => {
const card = dom.parentWithClass(options.positionTo, 'card');
startMultiSelect(card);
});