mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Upgrade font awesome from v4 to v5. Fixes #5731
This commit is contained in:
committed by
Akshay Joshi
parent
36574b25b6
commit
93adf6884f
@@ -105,7 +105,7 @@ define('pgadmin.node.mview', [
|
||||
category: 'refresh_mview', applies: ['object', 'context'],
|
||||
label: gettext('With no data'), data: {
|
||||
concurrent: false, with_data: false,
|
||||
}, icon: 'fa fa-refresh',
|
||||
}, icon: 'fa fa-sync-alt',
|
||||
},{
|
||||
name: 'refresh_mview_concurrent', node: 'mview', module: this,
|
||||
category: 'refresh_mview', enable: 'is_version_supported',
|
||||
@@ -118,7 +118,7 @@ define('pgadmin.node.mview', [
|
||||
data: {concurrent: true, with_data: false}, priority: 4,
|
||||
applies: ['object', 'context'], callback: 'refresh_mview',
|
||||
label: gettext('With no data (concurrently)'),
|
||||
icon: 'fa fa-refresh',
|
||||
icon: 'fa fa-sync-alt',
|
||||
}]);
|
||||
},
|
||||
|
||||
|
||||
@@ -81,7 +81,7 @@ define('pgadmin.node.database', [
|
||||
name: 'disconnect_database', node: 'database', module: this,
|
||||
applies: ['object', 'context'], callback: 'disconnect_database',
|
||||
category: 'drop', priority: 5, label: gettext('Disconnect Database...'),
|
||||
icon: 'fa fa-chain-broken', enable : 'is_connected',
|
||||
icon: 'fa fa-unlink', enable : 'is_connected',
|
||||
}]);
|
||||
|
||||
_.bindAll(this, 'connection_lost');
|
||||
|
||||
@@ -90,12 +90,12 @@ define('pgadmin.node.server', [
|
||||
name: 'disconnect_server', node: 'server', module: this,
|
||||
applies: ['object', 'context'], callback: 'disconnect_server',
|
||||
category: 'drop', priority: 5, label: gettext('Disconnect Server'),
|
||||
icon: 'fa fa-chain-broken', enable : 'is_connected',
|
||||
icon: 'fa fa-unlink', enable : 'is_connected',
|
||||
},{
|
||||
name: 'reload_configuration', node: 'server', module: this,
|
||||
applies: ['tools', 'context'], callback: 'reload_configuration',
|
||||
category: 'reload', priority: 6, label: gettext('Reload Configuration'),
|
||||
icon: 'fa fa-repeat', enable : 'enable_reload_config',
|
||||
icon: 'fa fa-redo-alt', enable : 'enable_reload_config',
|
||||
},{
|
||||
name: 'restore_point', node: 'server', module: this,
|
||||
applies: ['tools', 'context'], callback: 'restore_point',
|
||||
|
||||
@@ -73,7 +73,7 @@ define('pgadmin.node.tablespace', [
|
||||
applies: ['object', 'context'], callback: 'move_objects',
|
||||
category: 'move_tablespace', priority: 5,
|
||||
label: gettext('Move objects to...'),
|
||||
icon: 'fa fa-exchange', data: {action: 'create'},
|
||||
icon: 'fa fa-exchange-alt', data: {action: 'create'},
|
||||
enable: 'can_move_objects',
|
||||
},
|
||||
]);
|
||||
|
||||
Reference in New Issue
Block a user