From 06f36a28c3b0409a22e5edf1cfb07d9eea7cd32d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Gaya?= <sebastien.gaya@gmail.com> Date: Fri, 10 Dec 2021 11:34:55 +0100 Subject: [PATCH] fix --- .../website/authors/jekyll_collection.yml.erb | 6 +++--- .../website/categories/jekyll_collection.yml.erb | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/app/views/admin/communication/website/authors/jekyll_collection.yml.erb b/app/views/admin/communication/website/authors/jekyll_collection.yml.erb index 1f1259c00..301ee362d 100644 --- a/app/views/admin/communication/website/authors/jekyll_collection.yml.erb +++ b/app/views/admin/communication/website/authors/jekyll_collection.yml.erb @@ -1,3 +1,3 @@ -name: <%= @author.to_s %> -identifier: <%= @author.id %> -link: /auteurs/<%= @author.slug %> +name: "<%= @author.to_s %>" +identifier: "<%= @author.id %>" +link: "/auteurs/<%= @author.slug %>" diff --git a/app/views/admin/communication/website/categories/jekyll_collection.yml.erb b/app/views/admin/communication/website/categories/jekyll_collection.yml.erb index 054097861..1d9d99738 100644 --- a/app/views/admin/communication/website/categories/jekyll_collection.yml.erb +++ b/app/views/admin/communication/website/categories/jekyll_collection.yml.erb @@ -1,5 +1,5 @@ -name: <%= @category.name %> -identifier: <%= @category.id %> -link: /actualites/<%= @category.slug %> -parent: <%= @category.parent_id %> +name: "<%= @category.name %>" +identifier: "<%= @category.id %>" +link: "/actualites/<%= @category.slug %>" +parent: "<%= @category.parent_id %>" position: <%= @category.position %> -- GitLab