From c07053bce57561918d6ca68c6197b73e8112cc78 Mon Sep 17 00:00:00 2001 From: Akshay Joshi Date: Wed, 14 Dec 2022 15:56:05 +0530 Subject: [PATCH] 1) Update release note. 2) Fixed a typo. #5645 --- docs/en_US/release_notes_6_18.rst | 5 ++++- web/pgadmin/static/js/clipboard.js | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/en_US/release_notes_6_18.rst b/docs/en_US/release_notes_6_18.rst index c9bc7da81..7345a8b59 100644 --- a/docs/en_US/release_notes_6_18.rst +++ b/docs/en_US/release_notes_6_18.rst @@ -2,7 +2,7 @@ Version 6.18 ************ -Release date: 2022-12-15 +Release date: 2022-12-19 This release contains a number of bug fixes and new features since the release of pgAdmin 4 v6.17. @@ -27,9 +27,12 @@ Bug fixes | `Issue #5453 `_ - Fixed an issue where Transaction IDs were not found in session in the Query Tool. | `Issue #5470 `_ - Fixed an issue where tablespace was missing on partition tables in SQL. + | `Issue #5536 `_ - Fixed an issue where properties tab was refreshing on tab change even if the selected node is same. | `Issue #5551 `_ - Fixed an issue with auto-complete not working as expected with double quotes. | `Issue #5564 `_ - Ensure that table statistics are sorted by size. + | `Issue #5598 `_ - Fixed an issue while updating server node info removes the clear saved password menu. | `Issue #5603 `_ - Fixed an issue where master password was not set correctly with external config database. | `Issue #5606 `_ - Fixed an error in the collation create script for PG-15. | `Issue #5629 `_ - Fixed BigAnimal authentication aborted issue. | `Issue #5637 `_ - Ensure that the BigAnimal displays PG version 11-14 for Oracle compatible databases type. + | `Issue #5645 `_ - Fixed a typo. diff --git a/web/pgadmin/static/js/clipboard.js b/web/pgadmin/static/js/clipboard.js index 5b9793c3f..8f19f873f 100644 --- a/web/pgadmin/static/js/clipboard.js +++ b/web/pgadmin/static/js/clipboard.js @@ -5,7 +5,7 @@ export async function copyToClipboard(text) { await navigator.clipboard.writeText(text); } catch(err) { /* Suppress error */ - Notifier.error('Does not have clipboard acccess'); + Notifier.error('Does not have clipboard access'); } localStorage.setItem('clipboard', text); }