- Add support for creating a function with custom return type. #6854

- Fixed an issue where create object dialog title was not showing object type name.
This commit is contained in:
Pravesh Sharma
2023-11-28 15:54:44 +05:30
committed by GitHub
parent 3bd2dec663
commit 412375af3c
18 changed files with 473 additions and 6 deletions

View File

@@ -90,7 +90,7 @@ define('pgadmin.browser.node', [
title: function(d, action) {
if(action == 'create') {
return gettext('Create - %s', this._label);
return gettext('Create - %s', this.label);
}
return d._label??'';
},