Remove the alertify error message as no need to show it when the user presses

the keyboard shortcut to open the View/Edit data on unsupported nodes.

refs #6206
This commit is contained in:
Akshay Joshi
2021-03-30 16:21:22 +05:30
parent f0c86741a4
commit fb0d8c348a

View File

@@ -45,7 +45,6 @@ export function showDataGrid(
let applicable_nodes = ['table', 'view', 'mview', 'foreign_table'];
if (applicable_nodes.indexOf(node.getData()._type) === -1) {
alertify.error(gettext('This feature is not applicable to the selected object.'));
return;
}