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 f10f7ea commit 86dead7Copy full SHA for 86dead7
ui/src/composables/useBaseNamespaces.ts
@@ -79,16 +79,10 @@ export const useBaseNamespacesStore = () => {
79
const data = response.data;
80
const contentLength = response.headers?.["content-length"];
81
82
- let value = data;
83
if (contentLength === (data.length + 2).toString()) {
84
- value = `"${data}"`;
+ return `"${data}"`;
85
}
86
- return {
87
- type: response.headers?.["content-type"] || "STRING",
88
- value: value,
89
- description: response.headers?.["description"] || "",
90
- ttl: response.headers?.["ttl"] || undefined
91
- };
+ return data;
92
93
94
async function loadInheritedKVs(this: any, id: string) {
0 commit comments