We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64412df commit 7dcf2e8Copy full SHA for 7dcf2e8
src/components/Yaml/YamlViewer.tsx
@@ -15,8 +15,6 @@ type YamlViewerProps = {
15
export const YamlViewer: FC<YamlViewerProps> = ({ yamlString, filename }) => {
16
return (
17
<div className={styles.container}>
18
- {/* Use controlled value with a stable model path to update content without remounting */}
19
-
20
<YamlEditor value={yamlString} path={`${filename}.yaml`} options={{ readOnly: true }} />
21
</div>
22
);
0 commit comments