mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Co-authored-by: Eric Amodio <eamodio@microsoft.com>
This commit is contained in:
@@ -62,7 +62,7 @@ export class DropdownMenuActionViewItem extends BaseActionViewItem {
|
||||
let classNames: string[] = [];
|
||||
|
||||
if (typeof this.options.classNames === 'string') {
|
||||
classNames = this.options.classNames.split(/\W+/g).filter(s => !!s);
|
||||
classNames = this.options.classNames.split(/\s+/g).filter(s => !!s);
|
||||
} else if (this.options.classNames) {
|
||||
classNames = this.options.classNames;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user