From 0817bb8b101b5b35470f69411b18614b7fd5ce40 Mon Sep 17 00:00:00 2001 From: Tiago Alves Macambira Date: Wed, 12 Oct 2022 16:13:23 -0700 Subject: [PATCH] Fix column ordering in supported components table PR https://github.com/dapr/docs/pull/2863 added a new column for feature multipleKeyValuesPerSecret. But the while the ordering of this new column is OK in the header, it is wrong in the actual table data. This PR fixes that. Closes #2787 Signed-off-by: Tiago Alves Macambira --- daprdocs/layouts/partials/components/secret-stores.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/daprdocs/layouts/partials/components/secret-stores.html b/daprdocs/layouts/partials/components/secret-stores.html index 2f7eecc24..05d105bfb 100644 --- a/daprdocs/layouts/partials/components/secret-stores.html +++ b/daprdocs/layouts/partials/components/secret-stores.html @@ -27,10 +27,10 @@ {{ range sort $components "component" }} - {{ if .features.multipleKeyValuesPerSecret }}✅{{else}}{{ end }} {{ .component }} + {{ if .features.multipleKeyValuesPerSecret }}✅{{else}}{{ end }} {{ .state }} {{ .version }} {{ .since }} @@ -40,4 +40,4 @@ {{ end }} -{{ partial "components/componenttoc.html" . }} \ No newline at end of file +{{ partial "components/componenttoc.html" . }}