@appscode/design-system 1.0.43-alpha.108 → 1.0.43-alpha.109
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -167,10 +167,7 @@ export default {
|
|
|
167
167
|
},
|
|
168
168
|
computed: {
|
|
169
169
|
activeFile() {
|
|
170
|
-
const activeFile = this.previewYamls.
|
|
171
|
-
p => p.name === this.activePreview
|
|
172
|
-
);
|
|
173
|
-
|
|
170
|
+
const activeFile = this.previewYamls[this.activeKey];
|
|
174
171
|
return activeFile || { content: "", format: "yaml" };
|
|
175
172
|
},
|
|
176
173
|
showCopyBtn() {
|