mirror of
https://github.com/heygen-com/hyperframes.git
synced 2026-09-08 02:36:10 +00:00
fix(studio): editor panel UX — commit safety, keyboard a11y, wired BlockParamsPanel (#1965)
Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Opus 5
parent
acfa7c55a2
commit
ba607bf886
@@ -186,3 +186,15 @@ export function trackStudioFeedback(
|
||||
source: "studio",
|
||||
});
|
||||
}
|
||||
|
||||
export function trackBlockParamCommit(props: {
|
||||
tone: "saved" | "error" | "confirm";
|
||||
blockName: string;
|
||||
key: string;
|
||||
}): void {
|
||||
trackEvent("studio_block_param_commit", {
|
||||
tone: props.tone,
|
||||
block_name: props.blockName,
|
||||
param_key: props.key,
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user