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
commit e4ebe14340
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 1 deletions

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);
});