Received: from malur.postgresql.org ([217.196.149.56]) by arkaria.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1rGHuJ-00EXKN-1v for pgadmin-hackers@arkaria.postgresql.org; Thu, 21 Dec 2023 12:12:07 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.94.2) (envelope-from ) id 1rGHuH-007pe1-Ob for pgadmin-hackers@arkaria.postgresql.org; Thu, 21 Dec 2023 12:12:05 +0000 Received: from magus.postgresql.org ([2a02:c0:301:0:ffff::29]) by malur.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1rGHuH-007pdt-FP for pgadmin-hackers@lists.postgresql.org; Thu, 21 Dec 2023 12:12:05 +0000 Received: from out-17.smtp.github.com ([192.30.252.200]) by magus.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1rGHuE-00DAVV-BS for pgadmin-hackers@lists.postgresql.org; Thu, 21 Dec 2023 12:12:04 +0000 Received: from github.com (hubbernetes-node-724b1cc.va3-iad.github.net [10.48.207.46]) by smtp.github.com (Postfix) with ESMTPA id 892C240851 for ; Thu, 21 Dec 2023 04:12:00 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com; s=pf2023; t=1703160720; bh=fVD+rsQK2vD1xPIhBtYpA6OaKR9L94iAhmWUtIkPDZE=; h=Date:From:To:Subject:From; b=QjM8iGJpLeYwhXRYkECS4C8IHOlcCAiXP3kpoNcaWeqpM+SMhXpMxJC/8DANnXxDg sZF9ha9/lkSJbj6dRu2GpoTvw7ro2MdXxWi8/ZYkMStRAn4HLVdhn+1VOBryp6UaTK fLtuv2QJRfXwuxo2PCH4QR2TI/vHnKng45xDEv6Y= Date: Thu, 21 Dec 2023 04:12:00 -0800 From: Aditya Toshniwal To: pgadmin-hackers@lists.postgresql.org Message-ID: Subject: [pgadmin-org/pgadmin4] c8d6ff: Fixed an issue where query tool title did not chan... Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-GitHub-Recipient-Address: pgadmin-hackers@lists.postgresql.org X-Auto-Response-Suppress: All List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk Branch: refs/heads/master Home: https://github.com/pgadmin-org/pgadmin4 Commit: c8d6ff8a6d7cd03220dd247e43e373204814212e https://github.com/pgadmin-org/pgadmin4/commit/c8d6ff8a6d7cd03220dd247e43e373204814212e Author: Aditya Toshniwal Date: 2023-12-21 (Thu, 21 Dec 2023) Changed paths: M docs/en_US/release_notes_8_2.rst M web/pgadmin/static/js/helpers/Layout/index.jsx M web/pgadmin/tools/sqleditor/static/js/components/QueryToolComponent.jsx M web/pgadmin/tools/sqleditor/static/js/components/sections/MainToolBar.jsx M web/pgadmin/tools/sqleditor/static/js/components/sections/Query.jsx Log Message: ----------- Fixed an issue where query tool title did not change after 'Save As' until any new change is made. #6193