From 4115ae3031a061ec479b63b57bf64fb614e7971f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Agneray?= <francois.agneray@lam.fr> Date: Wed, 28 Sep 2022 21:26:04 +0200 Subject: [PATCH] Fixed default value instance entity --- server/src/Entity/Instance.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/server/src/Entity/Instance.php b/server/src/Entity/Instance.php index 9678463e..956591b0 100644 --- a/server/src/Entity/Instance.php +++ b/server/src/Entity/Instance.php @@ -382,8 +382,8 @@ class Instance implements \JsonSerializable /** * @var string * - * @Column(type="string", name="result_datatable_sorted_active_color", nullable=false, options={" - * default" : "#000000" + * @Column(type="string", name="result_datatable_sorted_active_color", nullable=false, options={ + * "default" : "#000000" * }) */ protected $resultDatatableSortedActiveColor; @@ -398,8 +398,8 @@ class Instance implements \JsonSerializable /** * @var string * - * @Column(type="string", name="result_datatable_link_hover_color", nullable=false, options={" - * default" : "#0056B3" + * @Column(type="string", name="result_datatable_link_hover_color", nullable=false, options={ + * "default" : "#0056B3" * }) */ protected $resultDatatableLinkHoverColor; @@ -407,8 +407,8 @@ class Instance implements \JsonSerializable /** * @var string * - * @Column(type="string", name="result_datatable_rows_selected_color", nullable=false, options={" - * default" : "#7AC29A" + * @Column(type="string", name="result_datatable_rows_selected_color", nullable=false, options={ + * "default" : "#7AC29A" * }) */ protected $resultDatatableRowsSelectedColor; -- GitLab