We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03a81db commit 09d68b5Copy full SHA for 09d68b5
src/plugins/sources-plugin.js
@@ -41,9 +41,10 @@ export default (options) =>
41
42
name = attribute.prefix ? `${attribute.prefix}:${name}` : name;
43
44
- const handlers =
45
- options.sources.list.get(tagName.toLowerCase()) ||
46
- options.sources.list.get("*");
+ const handlers = new Map([
+ ...(options.sources.list.get("*") || new Map()),
+ ...(options.sources.list.get(tagName.toLowerCase()) || new Map()),
47
+ ]);
48
49
if (!handlers) {
50
return;
0 commit comments