From 6f1958e0c01509eab38cb7741378eb1c391d69e8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 6 Jun 2020 13:53:42 +0000 Subject: [PATCH 1/2] Bump websocket-extensions from 0.1.3 to 0.1.4 Bumps [websocket-extensions](https://github.com/faye/websocket-extensions-node) from 0.1.3 to 0.1.4. - [Release notes](https://github.com/faye/websocket-extensions-node/releases) - [Changelog](https://github.com/faye/websocket-extensions-node/blob/master/CHANGELOG.md) - [Commits](https://github.com/faye/websocket-extensions-node/compare/0.1.3...0.1.4) Signed-off-by: dependabot[bot] --- yarn.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/yarn.lock b/yarn.lock index 20be7c9..6eb0aa0 100644 --- a/yarn.lock +++ b/yarn.lock @@ -7117,9 +7117,9 @@ websocket-driver@>=0.5.1: websocket-extensions ">=0.1.1" websocket-extensions@>=0.1.1: - version "0.1.3" - resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.3.tgz#5d2ff22977003ec687a4b87073dfbbac146ccf29" - integrity sha512-nqHUnMXmBzT0w570r2JpJxfiSD1IzoI+HGVdd3aZ0yNi3ngvQ4jv1dtHt5VGxfI2yj5yqImPhOK4vmIh2xMbGg== + version "0.1.4" + resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.4.tgz#7f8473bc839dfd87608adb95d7eb075211578a42" + integrity sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg== which-module@^1.0.0: version "1.0.0" From 847b8dfecc7474d6dccbf2e273fc18ccff643470 Mon Sep 17 00:00:00 2001 From: "tien.xuan.vo" Date: Sat, 7 Nov 2020 12:28:14 +0700 Subject: [PATCH 2/2] Fix page title --- src/Controller/GroupController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Controller/GroupController.php b/src/Controller/GroupController.php index bb5b40a..597a8c0 100755 --- a/src/Controller/GroupController.php +++ b/src/Controller/GroupController.php @@ -86,7 +86,7 @@ public function create(Request $request, EntityManagerInterface $em, TranslatorI // Render Page return $this->render('Admin/Account/edit.html.twig', [ - 'page_title' => 'account_group_edit_title', + 'page_title' => 'account_group_new_title', 'page_description' => $translator->trans('account_group_new_desc'), 'form' => $form->createView(), ]);