A music player that connects to your cloud/distributed storage.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: wait for output configurator to be defined

+10 -7
+7 -6
deno.jsonc
··· 54 54 "@testing/": "./src/testing/", 55 55 "@tests/": "./tests/", 56 56 57 + "@common/": "./src/common/", 58 + "@components/": "./src/components/", 59 + "@definitions/": "./src/definitions/", 60 + "@styles/": "./src/styles/", 61 + "@themes/": "./src/themes/", 62 + 63 + // Diffuse prefix paths 57 64 "@diffuse/foundation": "./src/common/facets/foundation.js", 58 65 59 66 "@diffuse/common/": "./src/common/", ··· 61 68 "@diffuse/definitions/": "./src/definitions/", 62 69 "@diffuse/styles/": "./src/styles/", 63 70 "@diffuse/themes/": "./src/themes/", 64 - 65 - "@common/": "./src/common/", 66 - "@components/": "./src/components/", 67 - "@definitions/": "./src/definitions/", 68 - "@styles/": "./src/styles/", 69 - "@themes/": "./src/themes/", 70 71 71 72 // Build 72 73 "@atcute/lex-cli": "npm:@atcute/lex-cli@^2.5.3",
+3 -1
src/components/orchestrator/output/element.js
··· 33 33 /** @type {Set<string>} */ 34 34 let previouslyActivated = new Set(); 35 35 36 + await customElements.whenDefined(this.outputConfigurator.localName); 37 + 36 38 this.effect(() => { 37 - const set = this.outputConfigurator.activated(); 39 + const set = this.activated(); 38 40 const newlyActicated = set.difference(previouslyActivated); 39 41 40 42 newlyActicated.forEach((id) => {