diff --git a/scripts/license_checker_and_adder.py b/scripts/license_checker_and_adder.py index 5fbfff0eeb..31139ae87a 100755 --- a/scripts/license_checker_and_adder.py +++ b/scripts/license_checker_and_adder.py @@ -21,19 +21,9 @@ # This file is part of the Antares project. """ -FRONTEND_LICENSE_HEADER = """/** Copyright (c) 2024, RTE (https://www.rte-france.com) - * - * See AUTHORS.txt - * - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. - * - * SPDX-License-Identifier: MPL-2.0 - * - * This file is part of the Antares project. - */ -""" + +front_license_path = Path(__file__).resolve().parent.parent / "webapp" / "license-header.js" +FRONTEND_LICENSE_HEADER = front_license_path.read_text() def is_license_file(filename: str) -> bool: diff --git a/webapp/license-header.js b/webapp/license-header.js new file mode 100644 index 0000000000..a5bb574db3 --- /dev/null +++ b/webapp/license-header.js @@ -0,0 +1,13 @@ +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) + * + * See AUTHORS.txt + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + * + * SPDX-License-Identifier: MPL-2.0 + * + * This file is part of the Antares project. + */ \ No newline at end of file diff --git a/webapp/src/common/types.ts b/webapp/src/common/types.ts index ef080b087e..20893f0abe 100644 --- a/webapp/src/common/types.ts +++ b/webapp/src/common/types.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Api.tsx b/webapp/src/components/App/Api.tsx index f8cf031998..837b80e729 100644 --- a/webapp/src/components/App/Api.tsx +++ b/webapp/src/components/App/Api.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Data/DataListing.tsx b/webapp/src/components/App/Data/DataListing.tsx index 2a583d9c5e..30968f4f30 100644 --- a/webapp/src/components/App/Data/DataListing.tsx +++ b/webapp/src/components/App/Data/DataListing.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Data/DataPropsView.tsx b/webapp/src/components/App/Data/DataPropsView.tsx index 2d11b21174..c4b5215cf5 100644 --- a/webapp/src/components/App/Data/DataPropsView.tsx +++ b/webapp/src/components/App/Data/DataPropsView.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Data/DatasetCreationDialog.tsx b/webapp/src/components/App/Data/DatasetCreationDialog.tsx index 84b40d02da..90764a1977 100644 --- a/webapp/src/components/App/Data/DatasetCreationDialog.tsx +++ b/webapp/src/components/App/Data/DatasetCreationDialog.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Data/MatrixDialog.tsx b/webapp/src/components/App/Data/MatrixDialog.tsx index 7288dd024e..c02bf8a6c1 100644 --- a/webapp/src/components/App/Data/MatrixDialog.tsx +++ b/webapp/src/components/App/Data/MatrixDialog.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Data/index.tsx b/webapp/src/components/App/Data/index.tsx index 7739175bc3..ea35d174f2 100644 --- a/webapp/src/components/App/Data/index.tsx +++ b/webapp/src/components/App/Data/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Data/styles.ts b/webapp/src/components/App/Data/styles.ts index 0af8363446..fe3be93d6b 100644 --- a/webapp/src/components/App/Data/styles.ts +++ b/webapp/src/components/App/Data/styles.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Data/utils.tsx b/webapp/src/components/App/Data/utils.tsx index c21f9ee0f3..a05c03a790 100644 --- a/webapp/src/components/App/Data/utils.tsx +++ b/webapp/src/components/App/Data/utils.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Settings/Groups/Header.tsx b/webapp/src/components/App/Settings/Groups/Header.tsx index b5020cc9b9..509763f096 100644 --- a/webapp/src/components/App/Settings/Groups/Header.tsx +++ b/webapp/src/components/App/Settings/Groups/Header.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Settings/Groups/dialog/CreateGroupDialog.tsx b/webapp/src/components/App/Settings/Groups/dialog/CreateGroupDialog.tsx index e659a0ca02..c35544a668 100644 --- a/webapp/src/components/App/Settings/Groups/dialog/CreateGroupDialog.tsx +++ b/webapp/src/components/App/Settings/Groups/dialog/CreateGroupDialog.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Settings/Groups/dialog/GroupFormDialog/GroupForm.tsx b/webapp/src/components/App/Settings/Groups/dialog/GroupFormDialog/GroupForm.tsx index 76db3f8e45..9027ee1bcd 100644 --- a/webapp/src/components/App/Settings/Groups/dialog/GroupFormDialog/GroupForm.tsx +++ b/webapp/src/components/App/Settings/Groups/dialog/GroupFormDialog/GroupForm.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Settings/Groups/dialog/GroupFormDialog/index.tsx b/webapp/src/components/App/Settings/Groups/dialog/GroupFormDialog/index.tsx index 4c87b3e0dd..4f96b8a077 100644 --- a/webapp/src/components/App/Settings/Groups/dialog/GroupFormDialog/index.tsx +++ b/webapp/src/components/App/Settings/Groups/dialog/GroupFormDialog/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Settings/Groups/dialog/UpdateGroupDialog.tsx b/webapp/src/components/App/Settings/Groups/dialog/UpdateGroupDialog.tsx index 284b482a44..42e4541ed9 100644 --- a/webapp/src/components/App/Settings/Groups/dialog/UpdateGroupDialog.tsx +++ b/webapp/src/components/App/Settings/Groups/dialog/UpdateGroupDialog.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Settings/Groups/index.tsx b/webapp/src/components/App/Settings/Groups/index.tsx index fac341a528..dd28441273 100644 --- a/webapp/src/components/App/Settings/Groups/index.tsx +++ b/webapp/src/components/App/Settings/Groups/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Settings/Maintenance/index.tsx b/webapp/src/components/App/Settings/Maintenance/index.tsx index 0d89292813..624006a4e6 100644 --- a/webapp/src/components/App/Settings/Maintenance/index.tsx +++ b/webapp/src/components/App/Settings/Maintenance/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Settings/Tokens/Header.tsx b/webapp/src/components/App/Settings/Tokens/Header.tsx index 0ed3f0146d..a64c3cc599 100644 --- a/webapp/src/components/App/Settings/Tokens/Header.tsx +++ b/webapp/src/components/App/Settings/Tokens/Header.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Settings/Tokens/dialog/CreateTokenDialog.tsx b/webapp/src/components/App/Settings/Tokens/dialog/CreateTokenDialog.tsx index 342328d765..c735ddb702 100644 --- a/webapp/src/components/App/Settings/Tokens/dialog/CreateTokenDialog.tsx +++ b/webapp/src/components/App/Settings/Tokens/dialog/CreateTokenDialog.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Settings/Tokens/dialog/TokenFormDialog/TokenForm.tsx b/webapp/src/components/App/Settings/Tokens/dialog/TokenFormDialog/TokenForm.tsx index b72c3f6780..44018200dd 100644 --- a/webapp/src/components/App/Settings/Tokens/dialog/TokenFormDialog/TokenForm.tsx +++ b/webapp/src/components/App/Settings/Tokens/dialog/TokenFormDialog/TokenForm.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Settings/Tokens/dialog/TokenFormDialog/index.tsx b/webapp/src/components/App/Settings/Tokens/dialog/TokenFormDialog/index.tsx index 962cf8f370..8d30e9dd56 100644 --- a/webapp/src/components/App/Settings/Tokens/dialog/TokenFormDialog/index.tsx +++ b/webapp/src/components/App/Settings/Tokens/dialog/TokenFormDialog/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Settings/Tokens/dialog/TokenInfoDialog.tsx b/webapp/src/components/App/Settings/Tokens/dialog/TokenInfoDialog.tsx index 7fe0faf19b..2929cfd18c 100644 --- a/webapp/src/components/App/Settings/Tokens/dialog/TokenInfoDialog.tsx +++ b/webapp/src/components/App/Settings/Tokens/dialog/TokenInfoDialog.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Settings/Tokens/index.tsx b/webapp/src/components/App/Settings/Tokens/index.tsx index 6b1c466d81..ea8639c808 100644 --- a/webapp/src/components/App/Settings/Tokens/index.tsx +++ b/webapp/src/components/App/Settings/Tokens/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Settings/Users/Header.tsx b/webapp/src/components/App/Settings/Users/Header.tsx index 838af5450c..fa4317eade 100644 --- a/webapp/src/components/App/Settings/Users/Header.tsx +++ b/webapp/src/components/App/Settings/Users/Header.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Settings/Users/dialog/CreateUserDialog.tsx b/webapp/src/components/App/Settings/Users/dialog/CreateUserDialog.tsx index acbd27af74..298b7fb84d 100644 --- a/webapp/src/components/App/Settings/Users/dialog/CreateUserDialog.tsx +++ b/webapp/src/components/App/Settings/Users/dialog/CreateUserDialog.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Settings/Users/dialog/UpdateUserDialog.tsx b/webapp/src/components/App/Settings/Users/dialog/UpdateUserDialog.tsx index 19117a054e..1f8f6afabb 100644 --- a/webapp/src/components/App/Settings/Users/dialog/UpdateUserDialog.tsx +++ b/webapp/src/components/App/Settings/Users/dialog/UpdateUserDialog.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Settings/Users/dialog/UserFormDialog/UserForm.tsx b/webapp/src/components/App/Settings/Users/dialog/UserFormDialog/UserForm.tsx index 7e59bba956..dbe75b017f 100644 --- a/webapp/src/components/App/Settings/Users/dialog/UserFormDialog/UserForm.tsx +++ b/webapp/src/components/App/Settings/Users/dialog/UserFormDialog/UserForm.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Settings/Users/dialog/UserFormDialog/index.tsx b/webapp/src/components/App/Settings/Users/dialog/UserFormDialog/index.tsx index df0c81f8ea..a5d54fd5eb 100644 --- a/webapp/src/components/App/Settings/Users/dialog/UserFormDialog/index.tsx +++ b/webapp/src/components/App/Settings/Users/dialog/UserFormDialog/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Settings/Users/index.tsx b/webapp/src/components/App/Settings/Users/index.tsx index 00f4b456d7..ebca615afc 100644 --- a/webapp/src/components/App/Settings/Users/index.tsx +++ b/webapp/src/components/App/Settings/Users/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Settings/index.tsx b/webapp/src/components/App/Settings/index.tsx index f1ee82112f..0f3781212c 100644 --- a/webapp/src/components/App/Settings/index.tsx +++ b/webapp/src/components/App/Settings/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Settings/utils.ts b/webapp/src/components/App/Settings/utils.ts index 3cf7dfe518..b074304987 100644 --- a/webapp/src/components/App/Settings/utils.ts +++ b/webapp/src/components/App/Settings/utils.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/Commands/Edition/DraggableCommands/CommandImportButton.tsx b/webapp/src/components/App/Singlestudy/Commands/Edition/DraggableCommands/CommandImportButton.tsx index 69d4dbd790..3c0912d1f4 100644 --- a/webapp/src/components/App/Singlestudy/Commands/Edition/DraggableCommands/CommandImportButton.tsx +++ b/webapp/src/components/App/Singlestudy/Commands/Edition/DraggableCommands/CommandImportButton.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/Commands/Edition/DraggableCommands/CommandListItem/CommandMatrixViewer.tsx b/webapp/src/components/App/Singlestudy/Commands/Edition/DraggableCommands/CommandListItem/CommandMatrixViewer.tsx index e21168f2b9..d57efcec10 100644 --- a/webapp/src/components/App/Singlestudy/Commands/Edition/DraggableCommands/CommandListItem/CommandMatrixViewer.tsx +++ b/webapp/src/components/App/Singlestudy/Commands/Edition/DraggableCommands/CommandListItem/CommandMatrixViewer.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/Commands/Edition/DraggableCommands/CommandListItem/index.tsx b/webapp/src/components/App/Singlestudy/Commands/Edition/DraggableCommands/CommandListItem/index.tsx index 708d0653e2..c53d7b7ef1 100644 --- a/webapp/src/components/App/Singlestudy/Commands/Edition/DraggableCommands/CommandListItem/index.tsx +++ b/webapp/src/components/App/Singlestudy/Commands/Edition/DraggableCommands/CommandListItem/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/Commands/Edition/DraggableCommands/CommandListItem/style.ts b/webapp/src/components/App/Singlestudy/Commands/Edition/DraggableCommands/CommandListItem/style.ts index d5895e8ce6..e0d056e66c 100644 --- a/webapp/src/components/App/Singlestudy/Commands/Edition/DraggableCommands/CommandListItem/style.ts +++ b/webapp/src/components/App/Singlestudy/Commands/Edition/DraggableCommands/CommandListItem/style.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/Commands/Edition/DraggableCommands/CommandListView.tsx b/webapp/src/components/App/Singlestudy/Commands/Edition/DraggableCommands/CommandListView.tsx index f2dbcfe37e..5ba09ec873 100644 --- a/webapp/src/components/App/Singlestudy/Commands/Edition/DraggableCommands/CommandListView.tsx +++ b/webapp/src/components/App/Singlestudy/Commands/Edition/DraggableCommands/CommandListView.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/Commands/Edition/commandTypes.ts b/webapp/src/components/App/Singlestudy/Commands/Edition/commandTypes.ts index 854c9820b2..76d63180d0 100644 --- a/webapp/src/components/App/Singlestudy/Commands/Edition/commandTypes.ts +++ b/webapp/src/components/App/Singlestudy/Commands/Edition/commandTypes.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/Commands/Edition/index.tsx b/webapp/src/components/App/Singlestudy/Commands/Edition/index.tsx index e5dba88227..cdb2098be6 100644 --- a/webapp/src/components/App/Singlestudy/Commands/Edition/index.tsx +++ b/webapp/src/components/App/Singlestudy/Commands/Edition/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/Commands/Edition/style.ts b/webapp/src/components/App/Singlestudy/Commands/Edition/style.ts index 3f7d81220c..50163125c0 100644 --- a/webapp/src/components/App/Singlestudy/Commands/Edition/style.ts +++ b/webapp/src/components/App/Singlestudy/Commands/Edition/style.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/Commands/Edition/utils.ts b/webapp/src/components/App/Singlestudy/Commands/Edition/utils.ts index 319ce47eb3..5d19407ad5 100644 --- a/webapp/src/components/App/Singlestudy/Commands/Edition/utils.ts +++ b/webapp/src/components/App/Singlestudy/Commands/Edition/utils.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/Commands/index.tsx b/webapp/src/components/App/Singlestudy/Commands/index.tsx index d70a693a71..ef595a8eed 100644 --- a/webapp/src/components/App/Singlestudy/Commands/index.tsx +++ b/webapp/src/components/App/Singlestudy/Commands/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/Commands/style.ts b/webapp/src/components/App/Singlestudy/Commands/style.ts index 134b31d3bb..fab386d705 100644 --- a/webapp/src/components/App/Singlestudy/Commands/style.ts +++ b/webapp/src/components/App/Singlestudy/Commands/style.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/HomeView/InformationView/CreateVariantDialog.tsx b/webapp/src/components/App/Singlestudy/HomeView/InformationView/CreateVariantDialog.tsx index e1cfd19393..06526db96e 100644 --- a/webapp/src/components/App/Singlestudy/HomeView/InformationView/CreateVariantDialog.tsx +++ b/webapp/src/components/App/Singlestudy/HomeView/InformationView/CreateVariantDialog.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/HomeView/InformationView/LauncherHistory/JobStepper.tsx b/webapp/src/components/App/Singlestudy/HomeView/InformationView/LauncherHistory/JobStepper.tsx index 374ce57a9b..80ce0830c3 100644 --- a/webapp/src/components/App/Singlestudy/HomeView/InformationView/LauncherHistory/JobStepper.tsx +++ b/webapp/src/components/App/Singlestudy/HomeView/InformationView/LauncherHistory/JobStepper.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/HomeView/InformationView/LauncherHistory/index.tsx b/webapp/src/components/App/Singlestudy/HomeView/InformationView/LauncherHistory/index.tsx index 7af6f61cec..263a12d1a5 100644 --- a/webapp/src/components/App/Singlestudy/HomeView/InformationView/LauncherHistory/index.tsx +++ b/webapp/src/components/App/Singlestudy/HomeView/InformationView/LauncherHistory/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/HomeView/InformationView/LauncherHistory/style.ts b/webapp/src/components/App/Singlestudy/HomeView/InformationView/LauncherHistory/style.ts index 7a52dbddc6..296d4a5cb1 100644 --- a/webapp/src/components/App/Singlestudy/HomeView/InformationView/LauncherHistory/style.ts +++ b/webapp/src/components/App/Singlestudy/HomeView/InformationView/LauncherHistory/style.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/HomeView/InformationView/Notes/DetailsList.tsx b/webapp/src/components/App/Singlestudy/HomeView/InformationView/Notes/DetailsList.tsx index 43b7792d5b..295e521547 100644 --- a/webapp/src/components/App/Singlestudy/HomeView/InformationView/Notes/DetailsList.tsx +++ b/webapp/src/components/App/Singlestudy/HomeView/InformationView/Notes/DetailsList.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/HomeView/InformationView/Notes/NodeEditorModal/index.tsx b/webapp/src/components/App/Singlestudy/HomeView/InformationView/Notes/NodeEditorModal/index.tsx index 3d853ed085..f940943899 100644 --- a/webapp/src/components/App/Singlestudy/HomeView/InformationView/Notes/NodeEditorModal/index.tsx +++ b/webapp/src/components/App/Singlestudy/HomeView/InformationView/Notes/NodeEditorModal/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/HomeView/InformationView/Notes/NodeEditorModal/style.ts b/webapp/src/components/App/Singlestudy/HomeView/InformationView/Notes/NodeEditorModal/style.ts index 1e7a8706e5..c5848881b5 100644 --- a/webapp/src/components/App/Singlestudy/HomeView/InformationView/Notes/NodeEditorModal/style.ts +++ b/webapp/src/components/App/Singlestudy/HomeView/InformationView/Notes/NodeEditorModal/style.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/HomeView/InformationView/Notes/index.tsx b/webapp/src/components/App/Singlestudy/HomeView/InformationView/Notes/index.tsx index 789c8c80b0..9491982e92 100644 --- a/webapp/src/components/App/Singlestudy/HomeView/InformationView/Notes/index.tsx +++ b/webapp/src/components/App/Singlestudy/HomeView/InformationView/Notes/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/HomeView/InformationView/Notes/utils.ts b/webapp/src/components/App/Singlestudy/HomeView/InformationView/Notes/utils.ts index 2cecdef85d..4f2d146330 100644 --- a/webapp/src/components/App/Singlestudy/HomeView/InformationView/Notes/utils.ts +++ b/webapp/src/components/App/Singlestudy/HomeView/InformationView/Notes/utils.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/HomeView/InformationView/index.tsx b/webapp/src/components/App/Singlestudy/HomeView/InformationView/index.tsx index fbaf0d515c..52b57f4935 100644 --- a/webapp/src/components/App/Singlestudy/HomeView/InformationView/index.tsx +++ b/webapp/src/components/App/Singlestudy/HomeView/InformationView/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/HomeView/StudyTreeView/index.tsx b/webapp/src/components/App/Singlestudy/HomeView/StudyTreeView/index.tsx index c57e860a59..3e483c8e21 100644 --- a/webapp/src/components/App/Singlestudy/HomeView/StudyTreeView/index.tsx +++ b/webapp/src/components/App/Singlestudy/HomeView/StudyTreeView/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/HomeView/StudyTreeView/treeconfig.ts b/webapp/src/components/App/Singlestudy/HomeView/StudyTreeView/treeconfig.ts index 199db6680c..75fdc12ca7 100644 --- a/webapp/src/components/App/Singlestudy/HomeView/StudyTreeView/treeconfig.ts +++ b/webapp/src/components/App/Singlestudy/HomeView/StudyTreeView/treeconfig.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/HomeView/StudyTreeView/utils.ts b/webapp/src/components/App/Singlestudy/HomeView/StudyTreeView/utils.ts index 34cc75a64f..f9225289fb 100644 --- a/webapp/src/components/App/Singlestudy/HomeView/StudyTreeView/utils.ts +++ b/webapp/src/components/App/Singlestudy/HomeView/StudyTreeView/utils.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/HomeView/index.tsx b/webapp/src/components/App/Singlestudy/HomeView/index.tsx index 71f3219ce4..83f4d765a5 100644 --- a/webapp/src/components/App/Singlestudy/HomeView/index.tsx +++ b/webapp/src/components/App/Singlestudy/HomeView/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/NavHeader/Actions.tsx b/webapp/src/components/App/Singlestudy/NavHeader/Actions.tsx index 6d17c267cb..fb9dca2669 100644 --- a/webapp/src/components/App/Singlestudy/NavHeader/Actions.tsx +++ b/webapp/src/components/App/Singlestudy/NavHeader/Actions.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/NavHeader/ActionsMenu.tsx b/webapp/src/components/App/Singlestudy/NavHeader/ActionsMenu.tsx index c08e8dd87b..7e0c7b9135 100644 --- a/webapp/src/components/App/Singlestudy/NavHeader/ActionsMenu.tsx +++ b/webapp/src/components/App/Singlestudy/NavHeader/ActionsMenu.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/NavHeader/Details.tsx b/webapp/src/components/App/Singlestudy/NavHeader/Details.tsx index de23b9b696..2a59f1dca5 100644 --- a/webapp/src/components/App/Singlestudy/NavHeader/Details.tsx +++ b/webapp/src/components/App/Singlestudy/NavHeader/Details.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/NavHeader/index.tsx b/webapp/src/components/App/Singlestudy/NavHeader/index.tsx index 4a0cc3acbd..decab0bfa8 100644 --- a/webapp/src/components/App/Singlestudy/NavHeader/index.tsx +++ b/webapp/src/components/App/Singlestudy/NavHeader/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/PropertiesDialog.tsx b/webapp/src/components/App/Singlestudy/PropertiesDialog.tsx index a3e6e150df..c1600bf399 100644 --- a/webapp/src/components/App/Singlestudy/PropertiesDialog.tsx +++ b/webapp/src/components/App/Singlestudy/PropertiesDialog.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/UpgradeDialog.tsx b/webapp/src/components/App/Singlestudy/UpgradeDialog.tsx index 902eb53157..48663558b6 100644 --- a/webapp/src/components/App/Singlestudy/UpgradeDialog.tsx +++ b/webapp/src/components/App/Singlestudy/UpgradeDialog.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Configuration/AdequacyPatch/Fields.tsx b/webapp/src/components/App/Singlestudy/explore/Configuration/AdequacyPatch/Fields.tsx index 6b1cc244e9..8c6e2e411b 100644 --- a/webapp/src/components/App/Singlestudy/explore/Configuration/AdequacyPatch/Fields.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Configuration/AdequacyPatch/Fields.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Configuration/AdequacyPatch/index.tsx b/webapp/src/components/App/Singlestudy/explore/Configuration/AdequacyPatch/index.tsx index e01ef5240c..8b8b178543 100644 --- a/webapp/src/components/App/Singlestudy/explore/Configuration/AdequacyPatch/index.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Configuration/AdequacyPatch/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Configuration/AdequacyPatch/utils.ts b/webapp/src/components/App/Singlestudy/explore/Configuration/AdequacyPatch/utils.ts index 3a5e4a7ebf..3fb10e2782 100644 --- a/webapp/src/components/App/Singlestudy/explore/Configuration/AdequacyPatch/utils.ts +++ b/webapp/src/components/App/Singlestudy/explore/Configuration/AdequacyPatch/utils.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Configuration/AdvancedParameters/Fields.tsx b/webapp/src/components/App/Singlestudy/explore/Configuration/AdvancedParameters/Fields.tsx index a3938a84f8..19a19d41a9 100644 --- a/webapp/src/components/App/Singlestudy/explore/Configuration/AdvancedParameters/Fields.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Configuration/AdvancedParameters/Fields.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Configuration/AdvancedParameters/index.tsx b/webapp/src/components/App/Singlestudy/explore/Configuration/AdvancedParameters/index.tsx index c43fe83d8c..28e5ef9ee2 100644 --- a/webapp/src/components/App/Singlestudy/explore/Configuration/AdvancedParameters/index.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Configuration/AdvancedParameters/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Configuration/AdvancedParameters/utils.ts b/webapp/src/components/App/Singlestudy/explore/Configuration/AdvancedParameters/utils.ts index 09a80e6031..addfec700c 100644 --- a/webapp/src/components/App/Singlestudy/explore/Configuration/AdvancedParameters/utils.ts +++ b/webapp/src/components/App/Singlestudy/explore/Configuration/AdvancedParameters/utils.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Configuration/General/Fields.tsx b/webapp/src/components/App/Singlestudy/explore/Configuration/General/Fields.tsx index 3570e5b1f0..f4d23505b4 100644 --- a/webapp/src/components/App/Singlestudy/explore/Configuration/General/Fields.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Configuration/General/Fields.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Configuration/General/dialogs/ScenarioBuilderDialog/Table.tsx b/webapp/src/components/App/Singlestudy/explore/Configuration/General/dialogs/ScenarioBuilderDialog/Table.tsx index 53fb6d8b65..9b0648912a 100644 --- a/webapp/src/components/App/Singlestudy/explore/Configuration/General/dialogs/ScenarioBuilderDialog/Table.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Configuration/General/dialogs/ScenarioBuilderDialog/Table.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Configuration/General/dialogs/ScenarioBuilderDialog/index.tsx b/webapp/src/components/App/Singlestudy/explore/Configuration/General/dialogs/ScenarioBuilderDialog/index.tsx index f9d1b9b98f..3f86bc643c 100644 --- a/webapp/src/components/App/Singlestudy/explore/Configuration/General/dialogs/ScenarioBuilderDialog/index.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Configuration/General/dialogs/ScenarioBuilderDialog/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Configuration/General/dialogs/ScenarioBuilderDialog/utils.ts b/webapp/src/components/App/Singlestudy/explore/Configuration/General/dialogs/ScenarioBuilderDialog/utils.ts index cbb1d02ca9..87e4f5a979 100644 --- a/webapp/src/components/App/Singlestudy/explore/Configuration/General/dialogs/ScenarioBuilderDialog/utils.ts +++ b/webapp/src/components/App/Singlestudy/explore/Configuration/General/dialogs/ScenarioBuilderDialog/utils.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Configuration/General/dialogs/ScenarioBuilderDialog/withAreas.tsx b/webapp/src/components/App/Singlestudy/explore/Configuration/General/dialogs/ScenarioBuilderDialog/withAreas.tsx index e9dc9434fd..05dfcb013f 100644 --- a/webapp/src/components/App/Singlestudy/explore/Configuration/General/dialogs/ScenarioBuilderDialog/withAreas.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Configuration/General/dialogs/ScenarioBuilderDialog/withAreas.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Configuration/General/dialogs/ScenarioPlaylistDialog/index.tsx b/webapp/src/components/App/Singlestudy/explore/Configuration/General/dialogs/ScenarioPlaylistDialog/index.tsx index e1e056efb8..80f78ef82c 100644 --- a/webapp/src/components/App/Singlestudy/explore/Configuration/General/dialogs/ScenarioPlaylistDialog/index.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Configuration/General/dialogs/ScenarioPlaylistDialog/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Configuration/General/dialogs/ScenarioPlaylistDialog/utils.ts b/webapp/src/components/App/Singlestudy/explore/Configuration/General/dialogs/ScenarioPlaylistDialog/utils.ts index ce5a6c08cc..bd7c015df8 100644 --- a/webapp/src/components/App/Singlestudy/explore/Configuration/General/dialogs/ScenarioPlaylistDialog/utils.ts +++ b/webapp/src/components/App/Singlestudy/explore/Configuration/General/dialogs/ScenarioPlaylistDialog/utils.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Configuration/General/dialogs/ThematicTrimmingDialog/index.tsx b/webapp/src/components/App/Singlestudy/explore/Configuration/General/dialogs/ThematicTrimmingDialog/index.tsx index bf0d6437b9..1449479876 100644 --- a/webapp/src/components/App/Singlestudy/explore/Configuration/General/dialogs/ThematicTrimmingDialog/index.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Configuration/General/dialogs/ThematicTrimmingDialog/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Configuration/General/dialogs/ThematicTrimmingDialog/utils.ts b/webapp/src/components/App/Singlestudy/explore/Configuration/General/dialogs/ThematicTrimmingDialog/utils.ts index 05b9d7ad5c..a3a16e5661 100644 --- a/webapp/src/components/App/Singlestudy/explore/Configuration/General/dialogs/ThematicTrimmingDialog/utils.ts +++ b/webapp/src/components/App/Singlestudy/explore/Configuration/General/dialogs/ThematicTrimmingDialog/utils.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Configuration/General/index.tsx b/webapp/src/components/App/Singlestudy/explore/Configuration/General/index.tsx index 172973c4cd..9d9ea519d9 100644 --- a/webapp/src/components/App/Singlestudy/explore/Configuration/General/index.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Configuration/General/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Configuration/General/styles.ts b/webapp/src/components/App/Singlestudy/explore/Configuration/General/styles.ts index 2f51a56de5..702ed0e462 100644 --- a/webapp/src/components/App/Singlestudy/explore/Configuration/General/styles.ts +++ b/webapp/src/components/App/Singlestudy/explore/Configuration/General/styles.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Configuration/General/utils.ts b/webapp/src/components/App/Singlestudy/explore/Configuration/General/utils.ts index a09888c463..612e43080f 100644 --- a/webapp/src/components/App/Singlestudy/explore/Configuration/General/utils.ts +++ b/webapp/src/components/App/Singlestudy/explore/Configuration/General/utils.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Configuration/Optimization/Fields.tsx b/webapp/src/components/App/Singlestudy/explore/Configuration/Optimization/Fields.tsx index 902d0b2ad0..143b3108ed 100644 --- a/webapp/src/components/App/Singlestudy/explore/Configuration/Optimization/Fields.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Configuration/Optimization/Fields.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Configuration/Optimization/index.tsx b/webapp/src/components/App/Singlestudy/explore/Configuration/Optimization/index.tsx index 72b0ea49ff..775665d746 100644 --- a/webapp/src/components/App/Singlestudy/explore/Configuration/Optimization/index.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Configuration/Optimization/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Configuration/Optimization/utils.ts b/webapp/src/components/App/Singlestudy/explore/Configuration/Optimization/utils.ts index 833e148aa4..319509ac63 100644 --- a/webapp/src/components/App/Singlestudy/explore/Configuration/Optimization/utils.ts +++ b/webapp/src/components/App/Singlestudy/explore/Configuration/Optimization/utils.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Configuration/TimeSeriesManagement/Fields.tsx b/webapp/src/components/App/Singlestudy/explore/Configuration/TimeSeriesManagement/Fields.tsx index c31ddf63b8..d70ab020a4 100644 --- a/webapp/src/components/App/Singlestudy/explore/Configuration/TimeSeriesManagement/Fields.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Configuration/TimeSeriesManagement/Fields.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Configuration/TimeSeriesManagement/index.tsx b/webapp/src/components/App/Singlestudy/explore/Configuration/TimeSeriesManagement/index.tsx index de302de896..2619fe284c 100644 --- a/webapp/src/components/App/Singlestudy/explore/Configuration/TimeSeriesManagement/index.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Configuration/TimeSeriesManagement/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Configuration/TimeSeriesManagement/utils.ts b/webapp/src/components/App/Singlestudy/explore/Configuration/TimeSeriesManagement/utils.ts index 6102660dd7..19e42b5b33 100644 --- a/webapp/src/components/App/Singlestudy/explore/Configuration/TimeSeriesManagement/utils.ts +++ b/webapp/src/components/App/Singlestudy/explore/Configuration/TimeSeriesManagement/utils.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Configuration/index.tsx b/webapp/src/components/App/Singlestudy/explore/Configuration/index.tsx index fd79248869..2cb4312daa 100644 --- a/webapp/src/components/App/Singlestudy/explore/Configuration/index.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Configuration/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Debug/Data/Json.tsx b/webapp/src/components/App/Singlestudy/explore/Debug/Data/Json.tsx index c68676aba0..a80dfde726 100644 --- a/webapp/src/components/App/Singlestudy/explore/Debug/Data/Json.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Debug/Data/Json.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Debug/Data/Matrix.tsx b/webapp/src/components/App/Singlestudy/explore/Debug/Data/Matrix.tsx index 9cf26fafca..43151e9d48 100644 --- a/webapp/src/components/App/Singlestudy/explore/Debug/Data/Matrix.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Debug/Data/Matrix.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Debug/Data/Text.tsx b/webapp/src/components/App/Singlestudy/explore/Debug/Data/Text.tsx index fa7fd3c366..39d1406f4d 100644 --- a/webapp/src/components/App/Singlestudy/explore/Debug/Data/Text.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Debug/Data/Text.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Debug/Data/index.tsx b/webapp/src/components/App/Singlestudy/explore/Debug/Data/index.tsx index 5b96956379..2147bba078 100644 --- a/webapp/src/components/App/Singlestudy/explore/Debug/Data/index.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Debug/Data/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Debug/Data/style.ts b/webapp/src/components/App/Singlestudy/explore/Debug/Data/style.ts index 334251e5dc..a69299b931 100644 --- a/webapp/src/components/App/Singlestudy/explore/Debug/Data/style.ts +++ b/webapp/src/components/App/Singlestudy/explore/Debug/Data/style.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Debug/DebugContext.ts b/webapp/src/components/App/Singlestudy/explore/Debug/DebugContext.ts index 66c94f01dd..50642cba08 100644 --- a/webapp/src/components/App/Singlestudy/explore/Debug/DebugContext.ts +++ b/webapp/src/components/App/Singlestudy/explore/Debug/DebugContext.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Debug/Tree/FileTreeItem.tsx b/webapp/src/components/App/Singlestudy/explore/Debug/Tree/FileTreeItem.tsx index 77fb7e7f6d..13a5b00028 100644 --- a/webapp/src/components/App/Singlestudy/explore/Debug/Tree/FileTreeItem.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Debug/Tree/FileTreeItem.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Debug/Tree/index.tsx b/webapp/src/components/App/Singlestudy/explore/Debug/Tree/index.tsx index a9e3aa0d1f..6d2604b97f 100644 --- a/webapp/src/components/App/Singlestudy/explore/Debug/Tree/index.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Debug/Tree/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Debug/index.tsx b/webapp/src/components/App/Singlestudy/explore/Debug/index.tsx index 3b64991899..7e42a8303b 100644 --- a/webapp/src/components/App/Singlestudy/explore/Debug/index.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Debug/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Debug/utils.ts b/webapp/src/components/App/Singlestudy/explore/Debug/utils.ts index 458b0ab2e8..894f51dd78 100644 --- a/webapp/src/components/App/Singlestudy/explore/Debug/utils.ts +++ b/webapp/src/components/App/Singlestudy/explore/Debug/utils.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/AreaPropsView.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/AreaPropsView.tsx index 67e9896b74..790ff7a6f6 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/AreaPropsView.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/AreaPropsView.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/AreasTab.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/AreasTab.tsx index 2ad02d1ff2..508e75705a 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/AreasTab.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/AreasTab.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/Allocation/AllocationField.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/Allocation/AllocationField.tsx index 708e5f14e7..8c43074be9 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/Allocation/AllocationField.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/Allocation/AllocationField.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/Allocation/Fields.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/Allocation/Fields.tsx index 6b70bf098b..ce708a4771 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/Allocation/Fields.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/Allocation/Fields.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/Allocation/index.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/Allocation/index.tsx index f452664caf..8231ad0613 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/Allocation/index.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/Allocation/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/Allocation/utils.ts b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/Allocation/utils.ts index d560ef223c..46041fdcc2 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/Allocation/utils.ts +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/Allocation/utils.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/Correlation/CorrelationField.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/Correlation/CorrelationField.tsx index eea01c8876..929cca3bb9 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/Correlation/CorrelationField.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/Correlation/CorrelationField.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/Correlation/Fields.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/Correlation/Fields.tsx index e686e9ef4c..60a99464c7 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/Correlation/Fields.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/Correlation/Fields.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/Correlation/index.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/Correlation/index.tsx index 12a626b6fe..d6dce25747 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/Correlation/index.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/Correlation/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/Correlation/utils.ts b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/Correlation/utils.ts index fe79096e04..dc2b547e63 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/Correlation/utils.ts +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/Correlation/utils.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/HydroMatrix.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/HydroMatrix.tsx index b1bdbdd35f..ff6218de35 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/HydroMatrix.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/HydroMatrix.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/HydroMatrixDialog.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/HydroMatrixDialog.tsx index 2085ed8174..85223c55db 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/HydroMatrixDialog.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/HydroMatrixDialog.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/InflowStructure/index.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/InflowStructure/index.tsx index 563d211aca..d63487a116 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/InflowStructure/index.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/InflowStructure/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/InflowStructure/utils.ts b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/InflowStructure/utils.ts index a66f43e037..0c0525059a 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/InflowStructure/utils.ts +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/InflowStructure/utils.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/ManagementOptions/Fields.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/ManagementOptions/Fields.tsx index b3dc4759a4..91d3cdb6ee 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/ManagementOptions/Fields.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/ManagementOptions/Fields.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/ManagementOptions/index.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/ManagementOptions/index.tsx index d86e478758..6b778d69da 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/ManagementOptions/index.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/ManagementOptions/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/ManagementOptions/utils.ts b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/ManagementOptions/utils.ts index 5dc79fee53..ebb3a34512 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/ManagementOptions/utils.ts +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/ManagementOptions/utils.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/SplitHydroMatrix.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/SplitHydroMatrix.tsx index e9d02d84c4..1adbc4e2b9 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/SplitHydroMatrix.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/SplitHydroMatrix.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/ViewMatrixButton.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/ViewMatrixButton.tsx index 6be2da1159..e049eec4c2 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/ViewMatrixButton.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/ViewMatrixButton.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/hooks/useAreasOptions.ts b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/hooks/useAreasOptions.ts index 0c71e9b3a2..611c671625 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/hooks/useAreasOptions.ts +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/hooks/useAreasOptions.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/index.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/index.tsx index f5d01248f6..4209e439bf 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/index.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/style.ts b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/style.ts index 9c522b6ef0..b707cafec5 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/style.ts +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/style.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/utils.ts b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/utils.ts index 7e1669b91a..316745826e 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/utils.ts +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Hydro/utils.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Load.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Load.tsx index feca1d59b6..a9d67519de 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Load.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Load.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/MiscGen.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/MiscGen.tsx index 6070afebe6..46451653a9 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/MiscGen.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/MiscGen.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Properties/Fields.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Properties/Fields.tsx index 5432c2dfc5..7055f2e792 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Properties/Fields.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Properties/Fields.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Properties/index.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Properties/index.tsx index ab56ff55bd..d654ba80c7 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Properties/index.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Properties/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Properties/utils.ts b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Properties/utils.ts index a87302e267..5eef82d3f7 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Properties/utils.ts +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Properties/utils.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Renewables/Fields.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Renewables/Fields.tsx index 3b44702a53..0ee371d7fa 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Renewables/Fields.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Renewables/Fields.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Renewables/Form.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Renewables/Form.tsx index ff3d7b187f..0d3b21cf17 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Renewables/Form.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Renewables/Form.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Renewables/Matrix.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Renewables/Matrix.tsx index 0ab412fb81..4de557f4e5 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Renewables/Matrix.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Renewables/Matrix.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Renewables/index.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Renewables/index.tsx index 2a95c23ce1..873774c391 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Renewables/index.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Renewables/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Renewables/utils.ts b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Renewables/utils.ts index 0699253549..f3e2520aa2 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Renewables/utils.ts +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Renewables/utils.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Reserve.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Reserve.tsx index 5057118c00..0aae3af44d 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Reserve.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Reserve.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Solar.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Solar.tsx index 22eece2602..2aeddedd2d 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Solar.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Solar.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Storages/Fields.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Storages/Fields.tsx index ce73ceac8b..c492d318de 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Storages/Fields.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Storages/Fields.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Storages/Form.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Storages/Form.tsx index 4bfd611b9c..daa773bf9d 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Storages/Form.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Storages/Form.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Storages/Matrix.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Storages/Matrix.tsx index 70dc2f8dc0..4fb27fdb55 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Storages/Matrix.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Storages/Matrix.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Storages/index.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Storages/index.tsx index f99fdaa221..9ffc3c4b27 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Storages/index.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Storages/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Storages/utils.ts b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Storages/utils.ts index ccdc0dfd42..83bd3c60f7 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Storages/utils.ts +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Storages/utils.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Thermal/Fields.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Thermal/Fields.tsx index bd6d0f7257..c8c15c8780 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Thermal/Fields.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Thermal/Fields.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Thermal/Form.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Thermal/Form.tsx index 80e0b119ae..a549ff650f 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Thermal/Form.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Thermal/Form.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Thermal/Matrix.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Thermal/Matrix.tsx index 63421020b1..e735f20402 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Thermal/Matrix.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Thermal/Matrix.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Thermal/index.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Thermal/index.tsx index e67e2fa175..1b71f18651 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Thermal/index.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Thermal/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Thermal/utils.ts b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Thermal/utils.ts index c14b57eb37..3a5895c8f6 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Thermal/utils.ts +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Thermal/utils.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Wind.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Wind.tsx index 35e2bbc781..39339779c4 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Wind.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/Wind.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/common/clustersUtils.ts b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/common/clustersUtils.ts index b84054ccbe..56d94c7497 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/common/clustersUtils.ts +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/common/clustersUtils.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/index.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/index.tsx index 637b456f74..11536b3276 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/index.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/style.ts b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/style.ts index c5ccf2ee73..73594af06e 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/style.ts +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Areas/style.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/AddDialog.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/AddDialog.tsx index d87d6273d9..ca5540e438 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/AddDialog.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/AddDialog.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstPropsView.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstPropsView.tsx index 6564204701..e750c0a1aa 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstPropsView.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstPropsView.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/AddConstraintTermDialog/AddConstraintTermForm/OptionsList.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/AddConstraintTermDialog/AddConstraintTermForm/OptionsList.tsx index 3a640fa608..63a33457a3 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/AddConstraintTermDialog/AddConstraintTermForm/OptionsList.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/AddConstraintTermDialog/AddConstraintTermForm/OptionsList.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/AddConstraintTermDialog/AddConstraintTermForm/index.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/AddConstraintTermDialog/AddConstraintTermForm/index.tsx index 71940c4556..f70facc13a 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/AddConstraintTermDialog/AddConstraintTermForm/index.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/AddConstraintTermDialog/AddConstraintTermForm/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/AddConstraintTermDialog/index.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/AddConstraintTermDialog/index.tsx index b0ae6e8c15..2326e00edc 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/AddConstraintTermDialog/index.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/AddConstraintTermDialog/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/BindingConstForm.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/BindingConstForm.tsx index d658f620a6..d821dfe10d 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/BindingConstForm.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/BindingConstForm.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/ConstraintFields.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/ConstraintFields.tsx index 1cc6d4580e..6eca935f4c 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/ConstraintFields.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/ConstraintFields.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/ConstraintTerm/OptionsList.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/ConstraintTerm/OptionsList.tsx index 209aa979e1..f6777e5f66 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/ConstraintTerm/OptionsList.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/ConstraintTerm/OptionsList.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/ConstraintTerm/index.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/ConstraintTerm/index.tsx index c2eaa09eee..04bb4e22b9 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/ConstraintTerm/index.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/ConstraintTerm/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/Matrix.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/Matrix.tsx index 356edfdbb9..a3fd0f5cac 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/Matrix.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/Matrix.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/constraintviews/ConstraintElement.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/constraintviews/ConstraintElement.tsx index abecf943c6..5ae1d1c31c 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/constraintviews/ConstraintElement.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/constraintviews/ConstraintElement.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/constraintviews/OffsetInput.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/constraintviews/OffsetInput.tsx index d3e2771076..f63a7288c1 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/constraintviews/OffsetInput.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/constraintviews/OffsetInput.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/constraintviews/style.ts b/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/constraintviews/style.ts index d43c23db2e..46d9d65f72 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/constraintviews/style.ts +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/constraintviews/style.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/index.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/index.tsx index 795f8e8cd6..8b55779179 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/index.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/utils.ts b/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/utils.ts index bf865e44b4..30b7dbc06e 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/utils.ts +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/BindingConstView/utils.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/index.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/index.tsx index 5b52cf0ec7..f272e92f75 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/index.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/BindingConstraints/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Links/LinkPropsView.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Links/LinkPropsView.tsx index fbdaa32cf3..610dff4c74 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Links/LinkPropsView.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Links/LinkPropsView.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Links/LinkView/LinkForm.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Links/LinkView/LinkForm.tsx index 50d0a66947..6bae8f2f63 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Links/LinkView/LinkForm.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Links/LinkView/LinkForm.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Links/LinkView/LinkMatrixView.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Links/LinkView/LinkMatrixView.tsx index 9aede084fd..7cb84b4ae6 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Links/LinkView/LinkMatrixView.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Links/LinkView/LinkMatrixView.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Links/LinkView/index.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Links/LinkView/index.tsx index f3cfaeb260..bc2090ccff 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Links/LinkView/index.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Links/LinkView/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Links/LinkView/utils.ts b/webapp/src/components/App/Singlestudy/explore/Modelization/Links/LinkView/utils.ts index 1dcb581ec0..d2cc46d077 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Links/LinkView/utils.ts +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Links/LinkView/utils.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Links/index.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Links/index.tsx index 555c67f187..7d805ee3ba 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Links/index.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Links/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Map/Areas/AreaConfig.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Map/Areas/AreaConfig.tsx index 814d6ef975..db30224399 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Map/Areas/AreaConfig.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Map/Areas/AreaConfig.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Map/Areas/AreaLink.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Map/Areas/AreaLink.tsx index b534b59b02..87f38baf9f 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Map/Areas/AreaLink.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Map/Areas/AreaLink.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Map/Areas/AreaLinks.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Map/Areas/AreaLinks.tsx index 83828059dc..8f4f5dba3f 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Map/Areas/AreaLinks.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Map/Areas/AreaLinks.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Map/Areas/DeleteAreaDialog.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Map/Areas/DeleteAreaDialog.tsx index 458f0ad049..fd7f4350ad 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Map/Areas/DeleteAreaDialog.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Map/Areas/DeleteAreaDialog.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Map/Areas/index.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Map/Areas/index.tsx index e3e05ebfbc..b92d5a2c96 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Map/Areas/index.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Map/Areas/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Map/Areas/style.ts b/webapp/src/components/App/Singlestudy/explore/Modelization/Map/Areas/style.ts index 3fb0c402eb..aabe4c4bf2 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Map/Areas/style.ts +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Map/Areas/style.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Map/CreateAreaDialog.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Map/CreateAreaDialog.tsx index b4b2472534..3acf5026ea 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Map/CreateAreaDialog.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Map/CreateAreaDialog.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Map/MapConfig/Districts/CreateDistrictDialog.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Map/MapConfig/Districts/CreateDistrictDialog.tsx index 8099d07ad1..133f17c19e 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Map/MapConfig/Districts/CreateDistrictDialog.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Map/MapConfig/Districts/CreateDistrictDialog.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Map/MapConfig/Districts/UpdateDistrictDialog.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Map/MapConfig/Districts/UpdateDistrictDialog.tsx index 43ab5eb97b..b930986b51 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Map/MapConfig/Districts/UpdateDistrictDialog.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Map/MapConfig/Districts/UpdateDistrictDialog.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Map/MapConfig/Districts/index.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Map/MapConfig/Districts/index.tsx index 7f1c80f53d..dae45e1dda 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Map/MapConfig/Districts/index.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Map/MapConfig/Districts/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Map/MapConfig/Layers/CreateLayerDialog.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Map/MapConfig/Layers/CreateLayerDialog.tsx index 2b04b22efa..90b4ee39a1 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Map/MapConfig/Layers/CreateLayerDialog.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Map/MapConfig/Layers/CreateLayerDialog.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Map/MapConfig/Layers/UpdateLayerDialog.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Map/MapConfig/Layers/UpdateLayerDialog.tsx index 1daf4b5cab..643e74cb33 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Map/MapConfig/Layers/UpdateLayerDialog.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Map/MapConfig/Layers/UpdateLayerDialog.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Map/MapConfig/Layers/index.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Map/MapConfig/Layers/index.tsx index cda4b98626..aff05df5c4 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Map/MapConfig/Layers/index.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Map/MapConfig/Layers/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Map/MapConfig/index.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Map/MapConfig/index.tsx index c88cc1349b..e52842abc5 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Map/MapConfig/index.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Map/MapConfig/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Map/MapControlButtons.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Map/MapControlButtons.tsx index a375310fd9..973245da0f 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Map/MapControlButtons.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Map/MapControlButtons.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Map/MapGraph.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Map/MapGraph.tsx index be1f7672c8..d416128028 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Map/MapGraph.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Map/MapGraph.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Map/MapHeader.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Map/MapHeader.tsx index 495e5f957e..e0d965f0cd 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Map/MapHeader.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Map/MapHeader.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Map/Node.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Map/Node.tsx index 773a5abab3..2b55de00c4 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Map/Node.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Map/Node.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Map/index.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/Map/index.tsx index 5d7ef59084..462d80aac6 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Map/index.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Map/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Map/style.ts b/webapp/src/components/App/Singlestudy/explore/Modelization/Map/style.ts index 72cc1548a8..e3ebde2a05 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Map/style.ts +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Map/style.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/Map/utils.ts b/webapp/src/components/App/Singlestudy/explore/Modelization/Map/utils.ts index fd46f15a4c..2025d4a71d 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/Map/utils.ts +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/Map/utils.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Modelization/index.tsx b/webapp/src/components/App/Singlestudy/explore/Modelization/index.tsx index 454ed7bc54..629e345f3c 100644 --- a/webapp/src/components/App/Singlestudy/explore/Modelization/index.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Modelization/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Results/ResultDetails/index.tsx b/webapp/src/components/App/Singlestudy/explore/Results/ResultDetails/index.tsx index 6951d3fb07..767a5faa07 100644 --- a/webapp/src/components/App/Singlestudy/explore/Results/ResultDetails/index.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Results/ResultDetails/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Results/ResultDetails/utils.ts b/webapp/src/components/App/Singlestudy/explore/Results/ResultDetails/utils.ts index c63ede4ba8..042cc80bba 100644 --- a/webapp/src/components/App/Singlestudy/explore/Results/ResultDetails/utils.ts +++ b/webapp/src/components/App/Singlestudy/explore/Results/ResultDetails/utils.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Results/index.tsx b/webapp/src/components/App/Singlestudy/explore/Results/index.tsx index cbbcf0fb47..ea3c94a351 100644 --- a/webapp/src/components/App/Singlestudy/explore/Results/index.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Results/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/TabWrapper.tsx b/webapp/src/components/App/Singlestudy/explore/TabWrapper.tsx index 46c9a63f04..5c7ac6dd03 100644 --- a/webapp/src/components/App/Singlestudy/explore/TabWrapper.tsx +++ b/webapp/src/components/App/Singlestudy/explore/TabWrapper.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/TableModeList/dialogs/CreateTemplateTableDialog.tsx b/webapp/src/components/App/Singlestudy/explore/TableModeList/dialogs/CreateTemplateTableDialog.tsx index 2dcff5fe43..34da75ba1a 100644 --- a/webapp/src/components/App/Singlestudy/explore/TableModeList/dialogs/CreateTemplateTableDialog.tsx +++ b/webapp/src/components/App/Singlestudy/explore/TableModeList/dialogs/CreateTemplateTableDialog.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/TableModeList/dialogs/TableTemplateFormDialog.tsx b/webapp/src/components/App/Singlestudy/explore/TableModeList/dialogs/TableTemplateFormDialog.tsx index fe19ba810d..f019b529d5 100644 --- a/webapp/src/components/App/Singlestudy/explore/TableModeList/dialogs/TableTemplateFormDialog.tsx +++ b/webapp/src/components/App/Singlestudy/explore/TableModeList/dialogs/TableTemplateFormDialog.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/TableModeList/dialogs/UpdateTemplateTableDialog.tsx b/webapp/src/components/App/Singlestudy/explore/TableModeList/dialogs/UpdateTemplateTableDialog.tsx index 84d9d4f123..bf602db8dd 100644 --- a/webapp/src/components/App/Singlestudy/explore/TableModeList/dialogs/UpdateTemplateTableDialog.tsx +++ b/webapp/src/components/App/Singlestudy/explore/TableModeList/dialogs/UpdateTemplateTableDialog.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/TableModeList/index.tsx b/webapp/src/components/App/Singlestudy/explore/TableModeList/index.tsx index 3316ce9b50..ab4dcd787c 100644 --- a/webapp/src/components/App/Singlestudy/explore/TableModeList/index.tsx +++ b/webapp/src/components/App/Singlestudy/explore/TableModeList/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/TableModeList/utils.ts b/webapp/src/components/App/Singlestudy/explore/TableModeList/utils.ts index 6294baa905..8ded338463 100644 --- a/webapp/src/components/App/Singlestudy/explore/TableModeList/utils.ts +++ b/webapp/src/components/App/Singlestudy/explore/TableModeList/utils.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Xpansion/Candidates/CandidateForm.tsx b/webapp/src/components/App/Singlestudy/explore/Xpansion/Candidates/CandidateForm.tsx index 90a3e9c993..bb74aac2ad 100644 --- a/webapp/src/components/App/Singlestudy/explore/Xpansion/Candidates/CandidateForm.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Xpansion/Candidates/CandidateForm.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Xpansion/Candidates/CreateCandidateDialog.tsx b/webapp/src/components/App/Singlestudy/explore/Xpansion/Candidates/CreateCandidateDialog.tsx index 358c662c7f..8cda654de0 100644 --- a/webapp/src/components/App/Singlestudy/explore/Xpansion/Candidates/CreateCandidateDialog.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Xpansion/Candidates/CreateCandidateDialog.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Xpansion/Candidates/XpansionPropsView.tsx b/webapp/src/components/App/Singlestudy/explore/Xpansion/Candidates/XpansionPropsView.tsx index 1816645386..6da12c7a73 100644 --- a/webapp/src/components/App/Singlestudy/explore/Xpansion/Candidates/XpansionPropsView.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Xpansion/Candidates/XpansionPropsView.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Xpansion/Candidates/index.tsx b/webapp/src/components/App/Singlestudy/explore/Xpansion/Candidates/index.tsx index b455c0dd09..66d41de0c2 100644 --- a/webapp/src/components/App/Singlestudy/explore/Xpansion/Candidates/index.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Xpansion/Candidates/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Xpansion/Capacities.tsx b/webapp/src/components/App/Singlestudy/explore/Xpansion/Capacities.tsx index 1a4077b47a..8d6fbdeb92 100644 --- a/webapp/src/components/App/Singlestudy/explore/Xpansion/Capacities.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Xpansion/Capacities.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Xpansion/Constraints.tsx b/webapp/src/components/App/Singlestudy/explore/Xpansion/Constraints.tsx index 1dddebfb1c..9143c0abe7 100644 --- a/webapp/src/components/App/Singlestudy/explore/Xpansion/Constraints.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Xpansion/Constraints.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Xpansion/FileList.tsx b/webapp/src/components/App/Singlestudy/explore/Xpansion/FileList.tsx index c27f972b36..e4e291caf1 100644 --- a/webapp/src/components/App/Singlestudy/explore/Xpansion/FileList.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Xpansion/FileList.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Xpansion/Settings/SettingsForm.tsx b/webapp/src/components/App/Singlestudy/explore/Xpansion/Settings/SettingsForm.tsx index 2084eaca5a..259845da99 100644 --- a/webapp/src/components/App/Singlestudy/explore/Xpansion/Settings/SettingsForm.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Xpansion/Settings/SettingsForm.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Xpansion/Settings/index.tsx b/webapp/src/components/App/Singlestudy/explore/Xpansion/Settings/index.tsx index 3c363b4263..a3b01a4b9b 100644 --- a/webapp/src/components/App/Singlestudy/explore/Xpansion/Settings/index.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Xpansion/Settings/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Xpansion/Weights.tsx b/webapp/src/components/App/Singlestudy/explore/Xpansion/Weights.tsx index a8bded4638..3e18632c72 100644 --- a/webapp/src/components/App/Singlestudy/explore/Xpansion/Weights.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Xpansion/Weights.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Xpansion/index.tsx b/webapp/src/components/App/Singlestudy/explore/Xpansion/index.tsx index a9d8293aad..6f56a96318 100644 --- a/webapp/src/components/App/Singlestudy/explore/Xpansion/index.tsx +++ b/webapp/src/components/App/Singlestudy/explore/Xpansion/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Xpansion/share/styles.ts b/webapp/src/components/App/Singlestudy/explore/Xpansion/share/styles.ts index 1140da4900..96fb5dbd31 100644 --- a/webapp/src/components/App/Singlestudy/explore/Xpansion/share/styles.ts +++ b/webapp/src/components/App/Singlestudy/explore/Xpansion/share/styles.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/Xpansion/types.ts b/webapp/src/components/App/Singlestudy/explore/Xpansion/types.ts index 7a92ec5a87..84b190dda5 100644 --- a/webapp/src/components/App/Singlestudy/explore/Xpansion/types.ts +++ b/webapp/src/components/App/Singlestudy/explore/Xpansion/types.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/common/ListElement.tsx b/webapp/src/components/App/Singlestudy/explore/common/ListElement.tsx index 7afb1fcac1..69b9254d61 100644 --- a/webapp/src/components/App/Singlestudy/explore/common/ListElement.tsx +++ b/webapp/src/components/App/Singlestudy/explore/common/ListElement.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/common/OutputFilters.tsx b/webapp/src/components/App/Singlestudy/explore/common/OutputFilters.tsx index d44c62bbbc..39cef64ff6 100644 --- a/webapp/src/components/App/Singlestudy/explore/common/OutputFilters.tsx +++ b/webapp/src/components/App/Singlestudy/explore/common/OutputFilters.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/explore/common/types.ts b/webapp/src/components/App/Singlestudy/explore/common/types.ts index 5a24dfa66f..c9ae042882 100644 --- a/webapp/src/components/App/Singlestudy/explore/common/types.ts +++ b/webapp/src/components/App/Singlestudy/explore/common/types.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Singlestudy/index.tsx b/webapp/src/components/App/Singlestudy/index.tsx index 047526b274..7748369a48 100644 --- a/webapp/src/components/App/Singlestudy/index.tsx +++ b/webapp/src/components/App/Singlestudy/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Studies/BatchModeMenu.tsx b/webapp/src/components/App/Studies/BatchModeMenu.tsx index 5eca4ce1a3..a301b4e27f 100644 --- a/webapp/src/components/App/Studies/BatchModeMenu.tsx +++ b/webapp/src/components/App/Studies/BatchModeMenu.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Studies/CreateStudyDialog.tsx b/webapp/src/components/App/Studies/CreateStudyDialog.tsx index 8e95ab9257..c90a52cf5a 100644 --- a/webapp/src/components/App/Studies/CreateStudyDialog.tsx +++ b/webapp/src/components/App/Studies/CreateStudyDialog.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Studies/ExportModal/ExportFilter/Filter/MultipleLinkElement/index.tsx b/webapp/src/components/App/Studies/ExportModal/ExportFilter/Filter/MultipleLinkElement/index.tsx index a9be97fbf5..91b0c285b6 100644 --- a/webapp/src/components/App/Studies/ExportModal/ExportFilter/Filter/MultipleLinkElement/index.tsx +++ b/webapp/src/components/App/Studies/ExportModal/ExportFilter/Filter/MultipleLinkElement/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Studies/ExportModal/ExportFilter/Filter/MultipleLinkElement/style.ts b/webapp/src/components/App/Studies/ExportModal/ExportFilter/Filter/MultipleLinkElement/style.ts index 94c030e673..4528d39b84 100644 --- a/webapp/src/components/App/Studies/ExportModal/ExportFilter/Filter/MultipleLinkElement/style.ts +++ b/webapp/src/components/App/Studies/ExportModal/ExportFilter/Filter/MultipleLinkElement/style.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Studies/ExportModal/ExportFilter/Filter/SingleLinkElement/index.tsx b/webapp/src/components/App/Studies/ExportModal/ExportFilter/Filter/SingleLinkElement/index.tsx index 8458c975e6..961d7a6929 100644 --- a/webapp/src/components/App/Studies/ExportModal/ExportFilter/Filter/SingleLinkElement/index.tsx +++ b/webapp/src/components/App/Studies/ExportModal/ExportFilter/Filter/SingleLinkElement/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Studies/ExportModal/ExportFilter/Filter/SingleLinkElement/style.ts b/webapp/src/components/App/Studies/ExportModal/ExportFilter/Filter/SingleLinkElement/style.ts index c077d84fff..5c9b66e87a 100644 --- a/webapp/src/components/App/Studies/ExportModal/ExportFilter/Filter/SingleLinkElement/style.ts +++ b/webapp/src/components/App/Studies/ExportModal/ExportFilter/Filter/SingleLinkElement/style.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Studies/ExportModal/ExportFilter/Filter/index.tsx b/webapp/src/components/App/Studies/ExportModal/ExportFilter/Filter/index.tsx index 2d76e252fd..d64fc9665d 100644 --- a/webapp/src/components/App/Studies/ExportModal/ExportFilter/Filter/index.tsx +++ b/webapp/src/components/App/Studies/ExportModal/ExportFilter/Filter/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Studies/ExportModal/ExportFilter/Filter/style.ts b/webapp/src/components/App/Studies/ExportModal/ExportFilter/Filter/style.ts index 08186f67af..870740514c 100644 --- a/webapp/src/components/App/Studies/ExportModal/ExportFilter/Filter/style.ts +++ b/webapp/src/components/App/Studies/ExportModal/ExportFilter/Filter/style.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Studies/ExportModal/ExportFilter/TagSelect/index.tsx b/webapp/src/components/App/Studies/ExportModal/ExportFilter/TagSelect/index.tsx index 310dd8d2d8..4ea269470f 100644 --- a/webapp/src/components/App/Studies/ExportModal/ExportFilter/TagSelect/index.tsx +++ b/webapp/src/components/App/Studies/ExportModal/ExportFilter/TagSelect/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Studies/ExportModal/ExportFilter/TagSelect/style.ts b/webapp/src/components/App/Studies/ExportModal/ExportFilter/TagSelect/style.ts index 22cf6667c9..b043b11320 100644 --- a/webapp/src/components/App/Studies/ExportModal/ExportFilter/TagSelect/style.ts +++ b/webapp/src/components/App/Studies/ExportModal/ExportFilter/TagSelect/style.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Studies/ExportModal/ExportFilter/index.tsx b/webapp/src/components/App/Studies/ExportModal/ExportFilter/index.tsx index bbfb43d893..a03d0f22fe 100644 --- a/webapp/src/components/App/Studies/ExportModal/ExportFilter/index.tsx +++ b/webapp/src/components/App/Studies/ExportModal/ExportFilter/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Studies/ExportModal/index.tsx b/webapp/src/components/App/Studies/ExportModal/index.tsx index 58ba26da72..d9d24714cf 100644 --- a/webapp/src/components/App/Studies/ExportModal/index.tsx +++ b/webapp/src/components/App/Studies/ExportModal/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Studies/FilterDrawer.tsx b/webapp/src/components/App/Studies/FilterDrawer.tsx index 7ea53ba926..676fb27f91 100644 --- a/webapp/src/components/App/Studies/FilterDrawer.tsx +++ b/webapp/src/components/App/Studies/FilterDrawer.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Studies/HeaderBottom.tsx b/webapp/src/components/App/Studies/HeaderBottom.tsx index bac3d5fa01..bfab7c6511 100644 --- a/webapp/src/components/App/Studies/HeaderBottom.tsx +++ b/webapp/src/components/App/Studies/HeaderBottom.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Studies/HeaderTopRight.tsx b/webapp/src/components/App/Studies/HeaderTopRight.tsx index 6290be11eb..117658f834 100644 --- a/webapp/src/components/App/Studies/HeaderTopRight.tsx +++ b/webapp/src/components/App/Studies/HeaderTopRight.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Studies/LauncherDialog.tsx b/webapp/src/components/App/Studies/LauncherDialog.tsx index 92b24e1dce..5a000a9a7d 100644 --- a/webapp/src/components/App/Studies/LauncherDialog.tsx +++ b/webapp/src/components/App/Studies/LauncherDialog.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Studies/MoveStudyDialog.tsx b/webapp/src/components/App/Studies/MoveStudyDialog.tsx index d0e4f833fc..e3698438a5 100644 --- a/webapp/src/components/App/Studies/MoveStudyDialog.tsx +++ b/webapp/src/components/App/Studies/MoveStudyDialog.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Studies/RefreshButton.tsx b/webapp/src/components/App/Studies/RefreshButton.tsx index b595463998..cf158c4fe7 100644 --- a/webapp/src/components/App/Studies/RefreshButton.tsx +++ b/webapp/src/components/App/Studies/RefreshButton.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Studies/SideNav.tsx b/webapp/src/components/App/Studies/SideNav.tsx index 19551f7487..c0009ce7d2 100644 --- a/webapp/src/components/App/Studies/SideNav.tsx +++ b/webapp/src/components/App/Studies/SideNav.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Studies/StudiesList/StudyCardCell.tsx b/webapp/src/components/App/Studies/StudiesList/StudyCardCell.tsx index e3ce4e7eb1..64cfec20c3 100644 --- a/webapp/src/components/App/Studies/StudiesList/StudyCardCell.tsx +++ b/webapp/src/components/App/Studies/StudiesList/StudyCardCell.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Studies/StudiesList/index.tsx b/webapp/src/components/App/Studies/StudiesList/index.tsx index ef7d5ad077..a6c412e625 100644 --- a/webapp/src/components/App/Studies/StudiesList/index.tsx +++ b/webapp/src/components/App/Studies/StudiesList/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Studies/StudyCard.tsx b/webapp/src/components/App/Studies/StudyCard.tsx index 19d60ffe3e..79c0c6b991 100644 --- a/webapp/src/components/App/Studies/StudyCard.tsx +++ b/webapp/src/components/App/Studies/StudyCard.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Studies/StudyTree.tsx b/webapp/src/components/App/Studies/StudyTree.tsx index bd44edcae0..01a6200d85 100644 --- a/webapp/src/components/App/Studies/StudyTree.tsx +++ b/webapp/src/components/App/Studies/StudyTree.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Studies/index.tsx b/webapp/src/components/App/Studies/index.tsx index cf194aec46..f422ce3249 100644 --- a/webapp/src/components/App/Studies/index.tsx +++ b/webapp/src/components/App/Studies/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Studies/utils.ts b/webapp/src/components/App/Studies/utils.ts index ddb62d3c7a..dc2d1c5396 100644 --- a/webapp/src/components/App/Studies/utils.ts +++ b/webapp/src/components/App/Studies/utils.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Tasks/JobTableView.tsx b/webapp/src/components/App/Tasks/JobTableView.tsx index 66e2ba2385..5f8a34b674 100644 --- a/webapp/src/components/App/Tasks/JobTableView.tsx +++ b/webapp/src/components/App/Tasks/JobTableView.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Tasks/LaunchJobLogView.tsx b/webapp/src/components/App/Tasks/LaunchJobLogView.tsx index 5a7062195e..44d2b8f643 100644 --- a/webapp/src/components/App/Tasks/LaunchJobLogView.tsx +++ b/webapp/src/components/App/Tasks/LaunchJobLogView.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Tasks/NotificationBadge.tsx b/webapp/src/components/App/Tasks/NotificationBadge.tsx index e9c7b76ce8..499a327d71 100644 --- a/webapp/src/components/App/Tasks/NotificationBadge.tsx +++ b/webapp/src/components/App/Tasks/NotificationBadge.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/Tasks/index.tsx b/webapp/src/components/App/Tasks/index.tsx index 467730bbd2..6f756c49b6 100644 --- a/webapp/src/components/App/Tasks/index.tsx +++ b/webapp/src/components/App/Tasks/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/App/index.tsx b/webapp/src/components/App/index.tsx index 39b3865486..18cb04f537 100644 --- a/webapp/src/components/App/index.tsx +++ b/webapp/src/components/App/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/ButtonBack.tsx b/webapp/src/components/common/ButtonBack.tsx index d4e181fdfe..49fd1a5355 100644 --- a/webapp/src/components/common/ButtonBack.tsx +++ b/webapp/src/components/common/ButtonBack.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/DocLink.tsx b/webapp/src/components/common/DocLink.tsx index 19861f9484..48e5468701 100644 --- a/webapp/src/components/common/DocLink.tsx +++ b/webapp/src/components/common/DocLink.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/DownloadLink.tsx b/webapp/src/components/common/DownloadLink.tsx index 8e0fa39333..1f3b45894d 100644 --- a/webapp/src/components/common/DownloadLink.tsx +++ b/webapp/src/components/common/DownloadLink.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/DownloadMatrixButton.tsx b/webapp/src/components/common/DownloadMatrixButton.tsx index 9f8cd67fd7..560a4b1dae 100644 --- a/webapp/src/components/common/DownloadMatrixButton.tsx +++ b/webapp/src/components/common/DownloadMatrixButton.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/DynamicDataTable/TableRowGroup.tsx b/webapp/src/components/common/DynamicDataTable/TableRowGroup.tsx index 83b6fadb64..523694704a 100644 --- a/webapp/src/components/common/DynamicDataTable/TableRowGroup.tsx +++ b/webapp/src/components/common/DynamicDataTable/TableRowGroup.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/DynamicDataTable/TableRowItem.tsx b/webapp/src/components/common/DynamicDataTable/TableRowItem.tsx index 860977c1b1..214a84a730 100644 --- a/webapp/src/components/common/DynamicDataTable/TableRowItem.tsx +++ b/webapp/src/components/common/DynamicDataTable/TableRowItem.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/DynamicDataTable/TableToolbar.tsx b/webapp/src/components/common/DynamicDataTable/TableToolbar.tsx index 91a8a9f19e..7364176e7b 100644 --- a/webapp/src/components/common/DynamicDataTable/TableToolbar.tsx +++ b/webapp/src/components/common/DynamicDataTable/TableToolbar.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/DynamicDataTable/index.tsx b/webapp/src/components/common/DynamicDataTable/index.tsx index c7b017785c..6d00babf94 100644 --- a/webapp/src/components/common/DynamicDataTable/index.tsx +++ b/webapp/src/components/common/DynamicDataTable/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/DynamicDataTable/utils.ts b/webapp/src/components/common/DynamicDataTable/utils.ts index 00b1a62902..3818fc3bd8 100644 --- a/webapp/src/components/common/DynamicDataTable/utils.ts +++ b/webapp/src/components/common/DynamicDataTable/utils.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/DynamicList.tsx b/webapp/src/components/common/DynamicList.tsx index 4b4e51bde8..d0ce83e085 100644 --- a/webapp/src/components/common/DynamicList.tsx +++ b/webapp/src/components/common/DynamicList.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/EditableMatrix/MatrixGraphView.tsx b/webapp/src/components/common/EditableMatrix/MatrixGraphView.tsx index 26e7dbc444..765f991b03 100644 --- a/webapp/src/components/common/EditableMatrix/MatrixGraphView.tsx +++ b/webapp/src/components/common/EditableMatrix/MatrixGraphView.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/EditableMatrix/index.tsx b/webapp/src/components/common/EditableMatrix/index.tsx index c64cb75400..42802118eb 100644 --- a/webapp/src/components/common/EditableMatrix/index.tsx +++ b/webapp/src/components/common/EditableMatrix/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/EditableMatrix/style.ts b/webapp/src/components/common/EditableMatrix/style.ts index 6b5f07298d..dcd6dc3159 100644 --- a/webapp/src/components/common/EditableMatrix/style.ts +++ b/webapp/src/components/common/EditableMatrix/style.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/EditableMatrix/utils.ts b/webapp/src/components/common/EditableMatrix/utils.ts index aad2068833..aed63af7e7 100644 --- a/webapp/src/components/common/EditableMatrix/utils.ts +++ b/webapp/src/components/common/EditableMatrix/utils.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/Fieldset.tsx b/webapp/src/components/common/Fieldset.tsx index d5939df5b1..7652ba5abb 100644 --- a/webapp/src/components/common/Fieldset.tsx +++ b/webapp/src/components/common/Fieldset.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/FileTable.tsx b/webapp/src/components/common/FileTable.tsx index 4b504b018f..6f8b3e40ae 100644 --- a/webapp/src/components/common/FileTable.tsx +++ b/webapp/src/components/common/FileTable.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/Form/FormContext.tsx b/webapp/src/components/common/Form/FormContext.tsx index 46fe7da6dc..64ecd0d35e 100644 --- a/webapp/src/components/common/Form/FormContext.tsx +++ b/webapp/src/components/common/Form/FormContext.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/Form/index.tsx b/webapp/src/components/common/Form/index.tsx index a8c76432e4..da4bcca048 100644 --- a/webapp/src/components/common/Form/index.tsx +++ b/webapp/src/components/common/Form/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/Form/types.ts b/webapp/src/components/common/Form/types.ts index 7c8baef759..d7f27f94fb 100644 --- a/webapp/src/components/common/Form/types.ts +++ b/webapp/src/components/common/Form/types.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/Form/useFormApiPlus.ts b/webapp/src/components/common/Form/useFormApiPlus.ts index d4ac79e62f..be3239d69a 100644 --- a/webapp/src/components/common/Form/useFormApiPlus.ts +++ b/webapp/src/components/common/Form/useFormApiPlus.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/Form/useFormUndoRedo.ts b/webapp/src/components/common/Form/useFormUndoRedo.ts index 66801a1bfb..9d3fec2158 100644 --- a/webapp/src/components/common/Form/useFormUndoRedo.ts +++ b/webapp/src/components/common/Form/useFormUndoRedo.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/Form/utils.ts b/webapp/src/components/common/Form/utils.ts index c5d8909b45..e01e882708 100644 --- a/webapp/src/components/common/Form/utils.ts +++ b/webapp/src/components/common/Form/utils.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/GroupedDataTable/CreateDialog.tsx b/webapp/src/components/common/GroupedDataTable/CreateDialog.tsx index fb9dda4a73..60a23e7c58 100644 --- a/webapp/src/components/common/GroupedDataTable/CreateDialog.tsx +++ b/webapp/src/components/common/GroupedDataTable/CreateDialog.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/GroupedDataTable/DuplicateDialog.tsx b/webapp/src/components/common/GroupedDataTable/DuplicateDialog.tsx index ae1ce03c1a..5043bc8d53 100644 --- a/webapp/src/components/common/GroupedDataTable/DuplicateDialog.tsx +++ b/webapp/src/components/common/GroupedDataTable/DuplicateDialog.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/GroupedDataTable/cellRenderers/BooleanCell.tsx b/webapp/src/components/common/GroupedDataTable/cellRenderers/BooleanCell.tsx index c9bc471dea..b59c496854 100644 --- a/webapp/src/components/common/GroupedDataTable/cellRenderers/BooleanCell.tsx +++ b/webapp/src/components/common/GroupedDataTable/cellRenderers/BooleanCell.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/GroupedDataTable/index.tsx b/webapp/src/components/common/GroupedDataTable/index.tsx index d6c40fd19a..f24ab3f016 100644 --- a/webapp/src/components/common/GroupedDataTable/index.tsx +++ b/webapp/src/components/common/GroupedDataTable/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/GroupedDataTable/types.ts b/webapp/src/components/common/GroupedDataTable/types.ts index 95a0a71d9d..ba267f9f4b 100644 --- a/webapp/src/components/common/GroupedDataTable/types.ts +++ b/webapp/src/components/common/GroupedDataTable/types.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/GroupedDataTable/utils.ts b/webapp/src/components/common/GroupedDataTable/utils.ts index 9191ca87df..07b670d25a 100644 --- a/webapp/src/components/common/GroupedDataTable/utils.ts +++ b/webapp/src/components/common/GroupedDataTable/utils.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/Handsontable.tsx b/webapp/src/components/common/Handsontable.tsx index 6ae7eac2ff..0e6d6c3f8a 100644 --- a/webapp/src/components/common/Handsontable.tsx +++ b/webapp/src/components/common/Handsontable.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/JSONEditor/index.tsx b/webapp/src/components/common/JSONEditor/index.tsx index d7c8b3e775..0b1e291add 100644 --- a/webapp/src/components/common/JSONEditor/index.tsx +++ b/webapp/src/components/common/JSONEditor/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/LinearProgressWithLabel.tsx b/webapp/src/components/common/LinearProgressWithLabel.tsx index 2dd9155581..642efd3a4d 100644 --- a/webapp/src/components/common/LinearProgressWithLabel.tsx +++ b/webapp/src/components/common/LinearProgressWithLabel.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/LogModal.tsx b/webapp/src/components/common/LogModal.tsx index 6667e94a65..dc94255215 100644 --- a/webapp/src/components/common/LogModal.tsx +++ b/webapp/src/components/common/LogModal.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/MatrixGrid/Matrix.tsx b/webapp/src/components/common/MatrixGrid/Matrix.tsx index 2930726ba0..128bf480cc 100644 --- a/webapp/src/components/common/MatrixGrid/Matrix.tsx +++ b/webapp/src/components/common/MatrixGrid/Matrix.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/MatrixGrid/MatrixActions.tsx b/webapp/src/components/common/MatrixGrid/MatrixActions.tsx index d48261b443..b15634d03d 100644 --- a/webapp/src/components/common/MatrixGrid/MatrixActions.tsx +++ b/webapp/src/components/common/MatrixGrid/MatrixActions.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/MatrixGrid/index.test.tsx b/webapp/src/components/common/MatrixGrid/index.test.tsx index 88db7ad21f..363ae7b8c2 100644 --- a/webapp/src/components/common/MatrixGrid/index.test.tsx +++ b/webapp/src/components/common/MatrixGrid/index.test.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/MatrixGrid/index.tsx b/webapp/src/components/common/MatrixGrid/index.tsx index b22d36bc3a..d894b8d4ab 100644 --- a/webapp/src/components/common/MatrixGrid/index.tsx +++ b/webapp/src/components/common/MatrixGrid/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/MatrixGrid/style.ts b/webapp/src/components/common/MatrixGrid/style.ts index 74b6f5770f..d99c3ad7d6 100644 --- a/webapp/src/components/common/MatrixGrid/style.ts +++ b/webapp/src/components/common/MatrixGrid/style.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/MatrixGrid/types.ts b/webapp/src/components/common/MatrixGrid/types.ts index 4e3ab2aa53..af94b98d97 100644 --- a/webapp/src/components/common/MatrixGrid/types.ts +++ b/webapp/src/components/common/MatrixGrid/types.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/MatrixGrid/useColumnMapping.test.ts b/webapp/src/components/common/MatrixGrid/useColumnMapping.test.ts index 8270abb3b1..e88473b9a6 100644 --- a/webapp/src/components/common/MatrixGrid/useColumnMapping.test.ts +++ b/webapp/src/components/common/MatrixGrid/useColumnMapping.test.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/MatrixGrid/useColumnMapping.ts b/webapp/src/components/common/MatrixGrid/useColumnMapping.ts index 1ad1cb5932..522f93d025 100644 --- a/webapp/src/components/common/MatrixGrid/useColumnMapping.ts +++ b/webapp/src/components/common/MatrixGrid/useColumnMapping.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/MatrixGrid/useGridCellContent.test.ts b/webapp/src/components/common/MatrixGrid/useGridCellContent.test.ts index cf4ef08867..084a52d429 100644 --- a/webapp/src/components/common/MatrixGrid/useGridCellContent.test.ts +++ b/webapp/src/components/common/MatrixGrid/useGridCellContent.test.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/MatrixGrid/useGridCellContent.ts b/webapp/src/components/common/MatrixGrid/useGridCellContent.ts index 000f180da5..ca610950a8 100644 --- a/webapp/src/components/common/MatrixGrid/useGridCellContent.ts +++ b/webapp/src/components/common/MatrixGrid/useGridCellContent.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/MatrixGrid/useMatrix.test.tsx b/webapp/src/components/common/MatrixGrid/useMatrix.test.tsx index c78e275ab3..61b09b9be2 100644 --- a/webapp/src/components/common/MatrixGrid/useMatrix.test.tsx +++ b/webapp/src/components/common/MatrixGrid/useMatrix.test.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/MatrixGrid/useMatrix.ts b/webapp/src/components/common/MatrixGrid/useMatrix.ts index 129fb8c848..6da3a43c6b 100644 --- a/webapp/src/components/common/MatrixGrid/useMatrix.ts +++ b/webapp/src/components/common/MatrixGrid/useMatrix.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/MatrixGrid/utils.test.ts b/webapp/src/components/common/MatrixGrid/utils.test.ts index 5645a7736d..afe4e21c5c 100644 --- a/webapp/src/components/common/MatrixGrid/utils.test.ts +++ b/webapp/src/components/common/MatrixGrid/utils.test.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/MatrixGrid/utils.ts b/webapp/src/components/common/MatrixGrid/utils.ts index 7c479d4130..ed3e1094ee 100644 --- a/webapp/src/components/common/MatrixGrid/utils.ts +++ b/webapp/src/components/common/MatrixGrid/utils.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/MatrixInput/MatrixAssignDialog.tsx b/webapp/src/components/common/MatrixInput/MatrixAssignDialog.tsx index 8259be7858..8cdede9119 100644 --- a/webapp/src/components/common/MatrixInput/MatrixAssignDialog.tsx +++ b/webapp/src/components/common/MatrixInput/MatrixAssignDialog.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/MatrixInput/index.tsx b/webapp/src/components/common/MatrixInput/index.tsx index a24244401a..798b2f9b93 100644 --- a/webapp/src/components/common/MatrixInput/index.tsx +++ b/webapp/src/components/common/MatrixInput/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/MatrixInput/style.ts b/webapp/src/components/common/MatrixInput/style.ts index 5fd35f0fef..148f1b191d 100644 --- a/webapp/src/components/common/MatrixInput/style.ts +++ b/webapp/src/components/common/MatrixInput/style.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/PropertiesView.tsx b/webapp/src/components/common/PropertiesView.tsx index 3a0754b9ab..dc8fb61ab7 100644 --- a/webapp/src/components/common/PropertiesView.tsx +++ b/webapp/src/components/common/PropertiesView.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/SelectMulti.tsx b/webapp/src/components/common/SelectMulti.tsx index 680cc32e11..6512206708 100644 --- a/webapp/src/components/common/SelectMulti.tsx +++ b/webapp/src/components/common/SelectMulti.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/SelectSingle.tsx b/webapp/src/components/common/SelectSingle.tsx index acce4b22b9..c79374adaf 100644 --- a/webapp/src/components/common/SelectSingle.tsx +++ b/webapp/src/components/common/SelectSingle.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/SnackErrorMessage.tsx b/webapp/src/components/common/SnackErrorMessage.tsx index a4607d4d5d..28dbd01c0d 100644 --- a/webapp/src/components/common/SnackErrorMessage.tsx +++ b/webapp/src/components/common/SnackErrorMessage.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/SplitLayoutView.tsx b/webapp/src/components/common/SplitLayoutView.tsx index 4a870bd460..4145a9e13d 100644 --- a/webapp/src/components/common/SplitLayoutView.tsx +++ b/webapp/src/components/common/SplitLayoutView.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/SplitView/index.tsx b/webapp/src/components/common/SplitView/index.tsx index d21dd0175e..bfbc05d39b 100644 --- a/webapp/src/components/common/SplitView/index.tsx +++ b/webapp/src/components/common/SplitView/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/StarToggle.tsx b/webapp/src/components/common/StarToggle.tsx index 97af3b3bca..44698cbf96 100644 --- a/webapp/src/components/common/StarToggle.tsx +++ b/webapp/src/components/common/StarToggle.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/TableForm/Table.tsx b/webapp/src/components/common/TableForm/Table.tsx index d304cfb8af..70bfdd5e75 100644 --- a/webapp/src/components/common/TableForm/Table.tsx +++ b/webapp/src/components/common/TableForm/Table.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/TableForm/index.tsx b/webapp/src/components/common/TableForm/index.tsx index c8cb615c66..6ce8841bdc 100644 --- a/webapp/src/components/common/TableForm/index.tsx +++ b/webapp/src/components/common/TableForm/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/TableForm/utils.ts b/webapp/src/components/common/TableForm/utils.ts index 2919d2de9b..ff47af9481 100644 --- a/webapp/src/components/common/TableForm/utils.ts +++ b/webapp/src/components/common/TableForm/utils.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/TableMode.tsx b/webapp/src/components/common/TableMode.tsx index 217e436d98..fa309dc01f 100644 --- a/webapp/src/components/common/TableMode.tsx +++ b/webapp/src/components/common/TableMode.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/TabsView.tsx b/webapp/src/components/common/TabsView.tsx index bc04cef8df..cfee995bbf 100644 --- a/webapp/src/components/common/TabsView.tsx +++ b/webapp/src/components/common/TabsView.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/TextSeparator.tsx b/webapp/src/components/common/TextSeparator.tsx index 09337c7a82..51a1a40612 100644 --- a/webapp/src/components/common/TextSeparator.tsx +++ b/webapp/src/components/common/TextSeparator.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/buttons/SplitButton.tsx b/webapp/src/components/common/buttons/SplitButton.tsx index 643e62c7f6..45fa9c74c2 100644 --- a/webapp/src/components/common/buttons/SplitButton.tsx +++ b/webapp/src/components/common/buttons/SplitButton.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/dialogs/BasicDialog.tsx b/webapp/src/components/common/dialogs/BasicDialog.tsx index 1b93953696..de9e3e0806 100644 --- a/webapp/src/components/common/dialogs/BasicDialog.tsx +++ b/webapp/src/components/common/dialogs/BasicDialog.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/dialogs/ConfirmationDialog.tsx b/webapp/src/components/common/dialogs/ConfirmationDialog.tsx index 361f3c1739..d237a535f0 100644 --- a/webapp/src/components/common/dialogs/ConfirmationDialog.tsx +++ b/webapp/src/components/common/dialogs/ConfirmationDialog.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/dialogs/DataViewerDialog/index.tsx b/webapp/src/components/common/dialogs/DataViewerDialog/index.tsx index db8dbee0c5..fc1816d0e4 100644 --- a/webapp/src/components/common/dialogs/DataViewerDialog/index.tsx +++ b/webapp/src/components/common/dialogs/DataViewerDialog/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/dialogs/DataViewerDialog/styles.ts b/webapp/src/components/common/dialogs/DataViewerDialog/styles.ts index 10709d3ea8..cd499db66a 100644 --- a/webapp/src/components/common/dialogs/DataViewerDialog/styles.ts +++ b/webapp/src/components/common/dialogs/DataViewerDialog/styles.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/dialogs/DigestDialog.tsx b/webapp/src/components/common/dialogs/DigestDialog.tsx index 2f0658cbdd..adaed84ce6 100644 --- a/webapp/src/components/common/dialogs/DigestDialog.tsx +++ b/webapp/src/components/common/dialogs/DigestDialog.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/dialogs/FormDialog.tsx b/webapp/src/components/common/dialogs/FormDialog.tsx index 1cf91d304d..4980244f5d 100644 --- a/webapp/src/components/common/dialogs/FormDialog.tsx +++ b/webapp/src/components/common/dialogs/FormDialog.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/dialogs/ImportDialog.tsx b/webapp/src/components/common/dialogs/ImportDialog.tsx index c25dbacedd..a16bbf6df6 100644 --- a/webapp/src/components/common/dialogs/ImportDialog.tsx +++ b/webapp/src/components/common/dialogs/ImportDialog.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/dialogs/OkDialog.tsx b/webapp/src/components/common/dialogs/OkDialog.tsx index ce859a960b..d43c147b50 100644 --- a/webapp/src/components/common/dialogs/OkDialog.tsx +++ b/webapp/src/components/common/dialogs/OkDialog.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/fieldEditors/BooleanFE.tsx b/webapp/src/components/common/fieldEditors/BooleanFE.tsx index c5acb101be..56846ead2a 100644 --- a/webapp/src/components/common/fieldEditors/BooleanFE.tsx +++ b/webapp/src/components/common/fieldEditors/BooleanFE.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/fieldEditors/CheckBoxFE.tsx b/webapp/src/components/common/fieldEditors/CheckBoxFE.tsx index 40e8b8b40e..a104d50692 100644 --- a/webapp/src/components/common/fieldEditors/CheckBoxFE.tsx +++ b/webapp/src/components/common/fieldEditors/CheckBoxFE.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/fieldEditors/CheckboxesTagsFE.tsx b/webapp/src/components/common/fieldEditors/CheckboxesTagsFE.tsx index 90373aa35a..1b2b8f9326 100644 --- a/webapp/src/components/common/fieldEditors/CheckboxesTagsFE.tsx +++ b/webapp/src/components/common/fieldEditors/CheckboxesTagsFE.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/fieldEditors/ColorPickerFE/index.tsx b/webapp/src/components/common/fieldEditors/ColorPickerFE/index.tsx index 9f0f11d120..54bc1bc754 100644 --- a/webapp/src/components/common/fieldEditors/ColorPickerFE/index.tsx +++ b/webapp/src/components/common/fieldEditors/ColorPickerFE/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/fieldEditors/ColorPickerFE/utils.ts b/webapp/src/components/common/fieldEditors/ColorPickerFE/utils.ts index 319c8c3a68..8508a629cd 100644 --- a/webapp/src/components/common/fieldEditors/ColorPickerFE/utils.ts +++ b/webapp/src/components/common/fieldEditors/ColorPickerFE/utils.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/fieldEditors/ListFE/index.tsx b/webapp/src/components/common/fieldEditors/ListFE/index.tsx index 6a411577a2..94082376a5 100644 --- a/webapp/src/components/common/fieldEditors/ListFE/index.tsx +++ b/webapp/src/components/common/fieldEditors/ListFE/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/fieldEditors/ListFE/utils.ts b/webapp/src/components/common/fieldEditors/ListFE/utils.ts index 54b3e7c69d..0496f1f066 100644 --- a/webapp/src/components/common/fieldEditors/ListFE/utils.ts +++ b/webapp/src/components/common/fieldEditors/ListFE/utils.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/fieldEditors/NumberFE.tsx b/webapp/src/components/common/fieldEditors/NumberFE.tsx index d3152cb391..40947322c1 100644 --- a/webapp/src/components/common/fieldEditors/NumberFE.tsx +++ b/webapp/src/components/common/fieldEditors/NumberFE.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/fieldEditors/PasswordFE.tsx b/webapp/src/components/common/fieldEditors/PasswordFE.tsx index e552f6c784..7723ab0366 100644 --- a/webapp/src/components/common/fieldEditors/PasswordFE.tsx +++ b/webapp/src/components/common/fieldEditors/PasswordFE.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/fieldEditors/RadioFE.tsx b/webapp/src/components/common/fieldEditors/RadioFE.tsx index 32335abac0..2b8fa016c4 100644 --- a/webapp/src/components/common/fieldEditors/RadioFE.tsx +++ b/webapp/src/components/common/fieldEditors/RadioFE.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/fieldEditors/SearchFE.tsx b/webapp/src/components/common/fieldEditors/SearchFE.tsx index bd47494343..39b1e1d626 100644 --- a/webapp/src/components/common/fieldEditors/SearchFE.tsx +++ b/webapp/src/components/common/fieldEditors/SearchFE.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/fieldEditors/SelectFE.tsx b/webapp/src/components/common/fieldEditors/SelectFE.tsx index 9ed8b22cba..56ce7c30b4 100644 --- a/webapp/src/components/common/fieldEditors/SelectFE.tsx +++ b/webapp/src/components/common/fieldEditors/SelectFE.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/fieldEditors/StringFE.tsx b/webapp/src/components/common/fieldEditors/StringFE.tsx index e1115c2961..1f60a0f5ee 100644 --- a/webapp/src/components/common/fieldEditors/StringFE.tsx +++ b/webapp/src/components/common/fieldEditors/StringFE.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/fieldEditors/SwitchFE.tsx b/webapp/src/components/common/fieldEditors/SwitchFE.tsx index 4e29f701e1..30d3edd60f 100644 --- a/webapp/src/components/common/fieldEditors/SwitchFE.tsx +++ b/webapp/src/components/common/fieldEditors/SwitchFE.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/loaders/AppLoader.tsx b/webapp/src/components/common/loaders/AppLoader.tsx index aa60c31a99..b8ab955ff3 100644 --- a/webapp/src/components/common/loaders/AppLoader.tsx +++ b/webapp/src/components/common/loaders/AppLoader.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/loaders/BackdropLoading.tsx b/webapp/src/components/common/loaders/BackdropLoading.tsx index eea54b6229..29218a2c4e 100644 --- a/webapp/src/components/common/loaders/BackdropLoading.tsx +++ b/webapp/src/components/common/loaders/BackdropLoading.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/loaders/GlobalPageLoadingError.tsx b/webapp/src/components/common/loaders/GlobalPageLoadingError.tsx index 7771f6c06f..f31dc03b1d 100644 --- a/webapp/src/components/common/loaders/GlobalPageLoadingError.tsx +++ b/webapp/src/components/common/loaders/GlobalPageLoadingError.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/loaders/SimpleLoader.tsx b/webapp/src/components/common/loaders/SimpleLoader.tsx index b4dab0707d..8493b99327 100644 --- a/webapp/src/components/common/loaders/SimpleLoader.tsx +++ b/webapp/src/components/common/loaders/SimpleLoader.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/page/BasicPage.tsx b/webapp/src/components/common/page/BasicPage.tsx index 52dbc0f239..1d368850ad 100644 --- a/webapp/src/components/common/page/BasicPage.tsx +++ b/webapp/src/components/common/page/BasicPage.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/page/RootPage.tsx b/webapp/src/components/common/page/RootPage.tsx index f1f09c6d36..fb72759b8a 100644 --- a/webapp/src/components/common/page/RootPage.tsx +++ b/webapp/src/components/common/page/RootPage.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/page/SimpleContent.tsx b/webapp/src/components/common/page/SimpleContent.tsx index b21b79342b..cd4804272c 100644 --- a/webapp/src/components/common/page/SimpleContent.tsx +++ b/webapp/src/components/common/page/SimpleContent.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/page/ViewWrapper.tsx b/webapp/src/components/common/page/ViewWrapper.tsx index 98dac4e8fd..33cf4df198 100644 --- a/webapp/src/components/common/page/ViewWrapper.tsx +++ b/webapp/src/components/common/page/ViewWrapper.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/utils/UsePromiseCond.tsx b/webapp/src/components/common/utils/UsePromiseCond.tsx index e03afeb170..83189e0c82 100644 --- a/webapp/src/components/common/utils/UsePromiseCond.tsx +++ b/webapp/src/components/common/utils/UsePromiseCond.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/common/utils/constants.ts b/webapp/src/components/common/utils/constants.ts index 40e26fb77e..99f60d6782 100644 --- a/webapp/src/components/common/utils/constants.ts +++ b/webapp/src/components/common/utils/constants.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/wrappers/LoginWrapper.tsx b/webapp/src/components/wrappers/LoginWrapper.tsx index 6c318c70f7..4523f8e8ed 100644 --- a/webapp/src/components/wrappers/LoginWrapper.tsx +++ b/webapp/src/components/wrappers/LoginWrapper.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/wrappers/MaintenanceWrapper/MessageInfoDialog.tsx b/webapp/src/components/wrappers/MaintenanceWrapper/MessageInfoDialog.tsx index 95b6dfd9ab..4068e2a70a 100644 --- a/webapp/src/components/wrappers/MaintenanceWrapper/MessageInfoDialog.tsx +++ b/webapp/src/components/wrappers/MaintenanceWrapper/MessageInfoDialog.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/wrappers/MaintenanceWrapper/Stars.tsx b/webapp/src/components/wrappers/MaintenanceWrapper/Stars.tsx index 1d8f8dfdfc..644a9a5a07 100644 --- a/webapp/src/components/wrappers/MaintenanceWrapper/Stars.tsx +++ b/webapp/src/components/wrappers/MaintenanceWrapper/Stars.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/wrappers/MaintenanceWrapper/index.tsx b/webapp/src/components/wrappers/MaintenanceWrapper/index.tsx index e805853b20..5147037af7 100644 --- a/webapp/src/components/wrappers/MaintenanceWrapper/index.tsx +++ b/webapp/src/components/wrappers/MaintenanceWrapper/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/wrappers/MenuWrapper/index.tsx b/webapp/src/components/wrappers/MenuWrapper/index.tsx index 2e562739b0..2b3f7c6a16 100644 --- a/webapp/src/components/wrappers/MenuWrapper/index.tsx +++ b/webapp/src/components/wrappers/MenuWrapper/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/components/wrappers/MenuWrapper/styles.ts b/webapp/src/components/wrappers/MenuWrapper/styles.ts index bf6f5a0eab..4ed92477f9 100644 --- a/webapp/src/components/wrappers/MenuWrapper/styles.ts +++ b/webapp/src/components/wrappers/MenuWrapper/styles.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/hoc/reactHookFormSupport.tsx b/webapp/src/hoc/reactHookFormSupport.tsx index 903152a507..3e0e65145d 100644 --- a/webapp/src/hoc/reactHookFormSupport.tsx +++ b/webapp/src/hoc/reactHookFormSupport.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/hooks/useAutoUpdateRef.ts b/webapp/src/hooks/useAutoUpdateRef.ts index 44a0e09af5..df1d460401 100644 --- a/webapp/src/hooks/useAutoUpdateRef.ts +++ b/webapp/src/hooks/useAutoUpdateRef.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/hooks/useBlocker.ts b/webapp/src/hooks/useBlocker.ts index c0a8cc2abc..e4fce66307 100644 --- a/webapp/src/hooks/useBlocker.ts +++ b/webapp/src/hooks/useBlocker.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/hooks/useDebounce.ts b/webapp/src/hooks/useDebounce.ts index 94198fd955..231c4849a2 100644 --- a/webapp/src/hooks/useDebounce.ts +++ b/webapp/src/hooks/useDebounce.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/hooks/useDebouncedEffect.ts b/webapp/src/hooks/useDebouncedEffect.ts index 46e4c5e0c2..90fdbdeb3d 100644 --- a/webapp/src/hooks/useDebouncedEffect.ts +++ b/webapp/src/hooks/useDebouncedEffect.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/hooks/useDebouncedState.ts b/webapp/src/hooks/useDebouncedState.ts index 30a30c56e7..470248a02d 100644 --- a/webapp/src/hooks/useDebouncedState.ts +++ b/webapp/src/hooks/useDebouncedState.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/hooks/useEnqueueErrorSnackbar.tsx b/webapp/src/hooks/useEnqueueErrorSnackbar.tsx index 4d2ca520a6..51dcec46d7 100644 --- a/webapp/src/hooks/useEnqueueErrorSnackbar.tsx +++ b/webapp/src/hooks/useEnqueueErrorSnackbar.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/hooks/useMemoLocked.ts b/webapp/src/hooks/useMemoLocked.ts index f352f59dad..1d536c92a7 100644 --- a/webapp/src/hooks/useMemoLocked.ts +++ b/webapp/src/hooks/useMemoLocked.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/hooks/useNavigateOnCondition.ts b/webapp/src/hooks/useNavigateOnCondition.ts index 13e85c830e..3608856916 100644 --- a/webapp/src/hooks/useNavigateOnCondition.ts +++ b/webapp/src/hooks/useNavigateOnCondition.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/hooks/useOperationInProgressCount.ts b/webapp/src/hooks/useOperationInProgressCount.ts index 524717464a..26be81248b 100644 --- a/webapp/src/hooks/useOperationInProgressCount.ts +++ b/webapp/src/hooks/useOperationInProgressCount.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/hooks/usePromise.ts b/webapp/src/hooks/usePromise.ts index e0c05118f8..8769a05128 100644 --- a/webapp/src/hooks/usePromise.ts +++ b/webapp/src/hooks/usePromise.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/hooks/usePromiseWithSnackbarError.ts b/webapp/src/hooks/usePromiseWithSnackbarError.ts index 1e13fbe5b9..346d7568a6 100644 --- a/webapp/src/hooks/usePromiseWithSnackbarError.ts +++ b/webapp/src/hooks/usePromiseWithSnackbarError.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/hooks/usePrompt.ts b/webapp/src/hooks/usePrompt.ts index 68d4b3eef9..6f0d1d0d76 100644 --- a/webapp/src/hooks/usePrompt.ts +++ b/webapp/src/hooks/usePrompt.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/hooks/useUpdateEffectOnce.ts b/webapp/src/hooks/useUpdateEffectOnce.ts index 27b1913a61..c8ec4d7808 100644 --- a/webapp/src/hooks/useUpdateEffectOnce.ts +++ b/webapp/src/hooks/useUpdateEffectOnce.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/i18n.ts b/webapp/src/i18n.ts index f5c222afb7..f1012a8238 100644 --- a/webapp/src/i18n.ts +++ b/webapp/src/i18n.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/index.test.tsx b/webapp/src/index.test.tsx index c6b4528b47..e2c5ffa601 100644 --- a/webapp/src/index.test.tsx +++ b/webapp/src/index.test.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/index.tsx b/webapp/src/index.tsx index ce6b458f1e..4a3d8d1d42 100644 --- a/webapp/src/index.tsx +++ b/webapp/src/index.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/redux/components/UseAsyncAppSelectorCond.tsx b/webapp/src/redux/components/UseAsyncAppSelectorCond.tsx index 1c56dff90d..9e62e3bddd 100644 --- a/webapp/src/redux/components/UseAsyncAppSelectorCond.tsx +++ b/webapp/src/redux/components/UseAsyncAppSelectorCond.tsx @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/redux/ducks/auth.ts b/webapp/src/redux/ducks/auth.ts index f64615ead5..e77351b6c8 100644 --- a/webapp/src/redux/ducks/auth.ts +++ b/webapp/src/redux/ducks/auth.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/redux/ducks/groups.ts b/webapp/src/redux/ducks/groups.ts index d3053bb9c6..0d487f3a35 100644 --- a/webapp/src/redux/ducks/groups.ts +++ b/webapp/src/redux/ducks/groups.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/redux/ducks/index.ts b/webapp/src/redux/ducks/index.ts index e042661755..7fe58f0a35 100644 --- a/webapp/src/redux/ducks/index.ts +++ b/webapp/src/redux/ducks/index.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/redux/ducks/studies.ts b/webapp/src/redux/ducks/studies.ts index 5983a5b1f1..6260a002f0 100644 --- a/webapp/src/redux/ducks/studies.ts +++ b/webapp/src/redux/ducks/studies.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/redux/ducks/studyMaps.ts b/webapp/src/redux/ducks/studyMaps.ts index 5825471851..9b5d1303dd 100644 --- a/webapp/src/redux/ducks/studyMaps.ts +++ b/webapp/src/redux/ducks/studyMaps.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/redux/ducks/studySyntheses.ts b/webapp/src/redux/ducks/studySyntheses.ts index 67b4b20b1b..00beb748b4 100644 --- a/webapp/src/redux/ducks/studySyntheses.ts +++ b/webapp/src/redux/ducks/studySyntheses.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/redux/ducks/ui.ts b/webapp/src/redux/ducks/ui.ts index 2146894e61..18d4886b55 100644 --- a/webapp/src/redux/ducks/ui.ts +++ b/webapp/src/redux/ducks/ui.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/redux/ducks/users.ts b/webapp/src/redux/ducks/users.ts index 5a53925c88..89922f8018 100644 --- a/webapp/src/redux/ducks/users.ts +++ b/webapp/src/redux/ducks/users.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/redux/hooks/useAppDispatch.ts b/webapp/src/redux/hooks/useAppDispatch.ts index 3d73afd0ad..62c5305391 100644 --- a/webapp/src/redux/hooks/useAppDispatch.ts +++ b/webapp/src/redux/hooks/useAppDispatch.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/redux/hooks/useAppSelector.ts b/webapp/src/redux/hooks/useAppSelector.ts index fde4f7b514..54a95cf219 100644 --- a/webapp/src/redux/hooks/useAppSelector.ts +++ b/webapp/src/redux/hooks/useAppSelector.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/redux/hooks/useAsyncAppSelector.ts b/webapp/src/redux/hooks/useAsyncAppSelector.ts index 1d478472e0..2d01ab895a 100644 --- a/webapp/src/redux/hooks/useAsyncAppSelector.ts +++ b/webapp/src/redux/hooks/useAsyncAppSelector.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/redux/hooks/useStudyMaps.ts b/webapp/src/redux/hooks/useStudyMaps.ts index 10e417351c..5e187fed1f 100644 --- a/webapp/src/redux/hooks/useStudyMaps.ts +++ b/webapp/src/redux/hooks/useStudyMaps.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/redux/hooks/useStudySynthesis.ts b/webapp/src/redux/hooks/useStudySynthesis.ts index c81db5e610..57fdf75931 100644 --- a/webapp/src/redux/hooks/useStudySynthesis.ts +++ b/webapp/src/redux/hooks/useStudySynthesis.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/redux/middlewares/localStorageMiddleware.ts b/webapp/src/redux/middlewares/localStorageMiddleware.ts index fcb7b889bc..2e0e4baded 100644 --- a/webapp/src/redux/middlewares/localStorageMiddleware.ts +++ b/webapp/src/redux/middlewares/localStorageMiddleware.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/redux/selectors.ts b/webapp/src/redux/selectors.ts index b95bedddb3..5fb8947726 100644 --- a/webapp/src/redux/selectors.ts +++ b/webapp/src/redux/selectors.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/redux/store.ts b/webapp/src/redux/store.ts index 764ea38fc9..35c9296570 100644 --- a/webapp/src/redux/store.ts +++ b/webapp/src/redux/store.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/redux/utils.ts b/webapp/src/redux/utils.ts index 8362c71b35..ff8fe037db 100644 --- a/webapp/src/redux/utils.ts +++ b/webapp/src/redux/utils.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/services/api/auth.ts b/webapp/src/services/api/auth.ts index 97e6185486..f5ec9407df 100644 --- a/webapp/src/services/api/auth.ts +++ b/webapp/src/services/api/auth.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/services/api/client.ts b/webapp/src/services/api/client.ts index 3c2f8ee499..1eae8d860e 100644 --- a/webapp/src/services/api/client.ts +++ b/webapp/src/services/api/client.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/services/api/downloads.ts b/webapp/src/services/api/downloads.ts index 86c4f39037..452df236a0 100644 --- a/webapp/src/services/api/downloads.ts +++ b/webapp/src/services/api/downloads.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/services/api/maintenance.ts b/webapp/src/services/api/maintenance.ts index bb9c331f43..f0bcd0ee99 100644 --- a/webapp/src/services/api/maintenance.ts +++ b/webapp/src/services/api/maintenance.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/services/api/matrix.ts b/webapp/src/services/api/matrix.ts index 9449a7ee50..e7d6bee7a5 100644 --- a/webapp/src/services/api/matrix.ts +++ b/webapp/src/services/api/matrix.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/services/api/misc.ts b/webapp/src/services/api/misc.ts index 27f0427b24..95c40fefaf 100644 --- a/webapp/src/services/api/misc.ts +++ b/webapp/src/services/api/misc.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/services/api/studies/config/thematicTrimming/index.ts b/webapp/src/services/api/studies/config/thematicTrimming/index.ts index 7fb76588db..c6a8bc8992 100644 --- a/webapp/src/services/api/studies/config/thematicTrimming/index.ts +++ b/webapp/src/services/api/studies/config/thematicTrimming/index.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/services/api/studies/config/thematicTrimming/types.ts b/webapp/src/services/api/studies/config/thematicTrimming/types.ts index c2dee142b9..4edbc2075f 100644 --- a/webapp/src/services/api/studies/config/thematicTrimming/types.ts +++ b/webapp/src/services/api/studies/config/thematicTrimming/types.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/services/api/studies/raw/index.ts b/webapp/src/services/api/studies/raw/index.ts index dd53e3cf53..c0138c2581 100644 --- a/webapp/src/services/api/studies/raw/index.ts +++ b/webapp/src/services/api/studies/raw/index.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/services/api/studies/raw/types.ts b/webapp/src/services/api/studies/raw/types.ts index 4acaa7313e..cf8bcf6285 100644 --- a/webapp/src/services/api/studies/raw/types.ts +++ b/webapp/src/services/api/studies/raw/types.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/services/api/studies/tableMode/constants.ts b/webapp/src/services/api/studies/tableMode/constants.ts index 9a60bb25e5..d2271a109d 100644 --- a/webapp/src/services/api/studies/tableMode/constants.ts +++ b/webapp/src/services/api/studies/tableMode/constants.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/services/api/studies/tableMode/index.ts b/webapp/src/services/api/studies/tableMode/index.ts index 16d98a1b80..c20d54dbeb 100644 --- a/webapp/src/services/api/studies/tableMode/index.ts +++ b/webapp/src/services/api/studies/tableMode/index.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/services/api/studies/tableMode/types.ts b/webapp/src/services/api/studies/tableMode/types.ts index 0ce8591501..cfea92f8e7 100644 --- a/webapp/src/services/api/studies/tableMode/types.ts +++ b/webapp/src/services/api/studies/tableMode/types.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/services/api/study.ts b/webapp/src/services/api/study.ts index 1ec0abb24e..bdb8dde28b 100644 --- a/webapp/src/services/api/study.ts +++ b/webapp/src/services/api/study.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/services/api/studydata.ts b/webapp/src/services/api/studydata.ts index cce5d3c36f..a230be85bf 100644 --- a/webapp/src/services/api/studydata.ts +++ b/webapp/src/services/api/studydata.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/services/api/tasks.ts b/webapp/src/services/api/tasks.ts index 75176b0be1..3629646b00 100644 --- a/webapp/src/services/api/tasks.ts +++ b/webapp/src/services/api/tasks.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/services/api/user.ts b/webapp/src/services/api/user.ts index df80a1f076..0217bd26ed 100644 --- a/webapp/src/services/api/user.ts +++ b/webapp/src/services/api/user.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/services/api/variant.ts b/webapp/src/services/api/variant.ts index a3ec3bd202..0825ef7d1b 100644 --- a/webapp/src/services/api/variant.ts +++ b/webapp/src/services/api/variant.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/services/api/xpansion.ts b/webapp/src/services/api/xpansion.ts index 1e69fb56fb..841d280d17 100644 --- a/webapp/src/services/api/xpansion.ts +++ b/webapp/src/services/api/xpansion.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/services/config.ts b/webapp/src/services/config.ts index ab35b873c1..2eed7bff46 100644 --- a/webapp/src/services/config.ts +++ b/webapp/src/services/config.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/services/utils/index.ts b/webapp/src/services/utils/index.ts index 877f6e11f7..27cb441d65 100644 --- a/webapp/src/services/utils/index.ts +++ b/webapp/src/services/utils/index.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/services/utils/localStorage.ts b/webapp/src/services/utils/localStorage.ts index 2c56058981..11bd432e0d 100644 --- a/webapp/src/services/utils/localStorage.ts +++ b/webapp/src/services/utils/localStorage.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/services/webSockets.ts b/webapp/src/services/webSockets.ts index 7ead3aea69..18a250f019 100644 --- a/webapp/src/services/webSockets.ts +++ b/webapp/src/services/webSockets.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/tests/mocks/mockGetBoundingClientRect.ts b/webapp/src/tests/mocks/mockGetBoundingClientRect.ts index de50849a3f..a66544a9d0 100644 --- a/webapp/src/tests/mocks/mockGetBoundingClientRect.ts +++ b/webapp/src/tests/mocks/mockGetBoundingClientRect.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/tests/mocks/mockHTMLCanvasElement.ts b/webapp/src/tests/mocks/mockHTMLCanvasElement.ts index dd498b7924..84e22dd58e 100644 --- a/webapp/src/tests/mocks/mockHTMLCanvasElement.ts +++ b/webapp/src/tests/mocks/mockHTMLCanvasElement.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/tests/mocks/mockResizeObserver.ts b/webapp/src/tests/mocks/mockResizeObserver.ts index 44a81c245d..588233a277 100644 --- a/webapp/src/tests/mocks/mockResizeObserver.ts +++ b/webapp/src/tests/mocks/mockResizeObserver.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/tests/setup.ts b/webapp/src/tests/setup.ts index 72b714e6e2..5512f0a058 100644 --- a/webapp/src/tests/setup.ts +++ b/webapp/src/tests/setup.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/theme.ts b/webapp/src/theme.ts index 18d42e5073..a33788da8e 100644 --- a/webapp/src/theme.ts +++ b/webapp/src/theme.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/types/i18next.d.ts b/webapp/src/types/i18next.d.ts index d011ef2665..a9f77c3835 100644 --- a/webapp/src/types/i18next.d.ts +++ b/webapp/src/types/i18next.d.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/types/reset.d.ts b/webapp/src/types/reset.d.ts index c739024785..ceb285f769 100644 --- a/webapp/src/types/reset.d.ts +++ b/webapp/src/types/reset.d.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/utils/feUtils.ts b/webapp/src/utils/feUtils.ts index 8d6cc00282..8d6c75de6f 100644 --- a/webapp/src/utils/feUtils.ts +++ b/webapp/src/utils/feUtils.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/utils/fileUtils.ts b/webapp/src/utils/fileUtils.ts index 6b9d7d120f..f7d3895817 100644 --- a/webapp/src/utils/fileUtils.ts +++ b/webapp/src/utils/fileUtils.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/utils/fnUtils.ts b/webapp/src/utils/fnUtils.ts index 81d35982de..426dc01179 100644 --- a/webapp/src/utils/fnUtils.ts +++ b/webapp/src/utils/fnUtils.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/utils/i18nUtils.ts b/webapp/src/utils/i18nUtils.ts index a13ca51c31..185f3dbe26 100644 --- a/webapp/src/utils/i18nUtils.ts +++ b/webapp/src/utils/i18nUtils.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/utils/muiUtils.ts b/webapp/src/utils/muiUtils.ts index 5fb865b4a5..6ab5f19169 100644 --- a/webapp/src/utils/muiUtils.ts +++ b/webapp/src/utils/muiUtils.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/utils/reactUtils.ts b/webapp/src/utils/reactUtils.ts index 44b04bd8fd..a7b71b5468 100644 --- a/webapp/src/utils/reactUtils.ts +++ b/webapp/src/utils/reactUtils.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/utils/stringUtils.ts b/webapp/src/utils/stringUtils.ts index bfe8d06f40..6c829d37aa 100644 --- a/webapp/src/utils/stringUtils.ts +++ b/webapp/src/utils/stringUtils.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/utils/studiesUtils.ts b/webapp/src/utils/studiesUtils.ts index 164d851334..774e80ed13 100644 --- a/webapp/src/utils/studiesUtils.ts +++ b/webapp/src/utils/studiesUtils.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/utils/tsUtils.ts b/webapp/src/utils/tsUtils.ts index 180a7543f5..730c211486 100644 --- a/webapp/src/utils/tsUtils.ts +++ b/webapp/src/utils/tsUtils.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/utils/validationUtils.ts b/webapp/src/utils/validationUtils.ts index 1195fe8416..3d4c168697 100644 --- a/webapp/src/utils/validationUtils.ts +++ b/webapp/src/utils/validationUtils.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt * diff --git a/webapp/src/vite-env.d.ts b/webapp/src/vite-env.d.ts index 6868cb120f..53c83e842c 100644 --- a/webapp/src/vite-env.d.ts +++ b/webapp/src/vite-env.d.ts @@ -1,4 +1,5 @@ -/** Copyright (c) 2024, RTE (https://www.rte-france.com) +/** + * Copyright (c) 2024, RTE (https://www.rte-france.com) * * See AUTHORS.txt *