Skip to content

Commit 901824e

Browse files
committed
fix(studio): satisfy panel and deletion gates
1 parent 294eaaf commit 901824e

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

packages/studio/src/components/editor/PropertyPanelFlat.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -298,9 +298,8 @@ export function PropertyPanelFlat({
298298
const volumeAutomation = useVolumeAutomation(element, onSetAttributeQuiet ?? onSetAttributeLive);
299299

300300
// The group this clip belongs to, if any — the Audio FX summary reads
301-
// "in Voiceover" for a member (see `audioFxSummary`). Resolved from the live
302-
// document because membership lives on the members, so the owning group's
303-
// LABEL is not on the selected element.
301+
// "in Voiceover" for a member (see `audioFxSummary`). Membership lives on the
302+
// members, so resolve the owning label from the live document.
304303
const audioGroupLabel = useMemo((): string | undefined => {
305304
const doc = element.element?.ownerDocument;
306305
const id = element.id;

scripts/check-no-main-deletions.mjs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,10 @@ export const ALLOWED_DELETIONS = new Map([
121121
"packages/core/scripts/build-inline-artifact.ts",
122122
"a later branch in this stack (wa-20b2-lfo-fixes) independently deduped the same two build scripts a different way — buildInjectedArtifact.ts plus two thin per-target files — before this consolidation and that one had merged; this branch's tree keeps that shape instead, so build-inline-artifact.ts is the one that goes.",
123123
],
124+
[
125+
"packages/studio/src/hooks/useAudioSoloBridge.ts",
126+
"#3453 removes the obsolete solo bridge after its last consumer leaves",
127+
],
124128
]);
125129

126130
export function parseBase(argv, fallback = "origin/main") {

0 commit comments

Comments
 (0)