diff --git a/editor/js/ui/editor.js b/editor/js/ui/editor.js index bdb1d8faa..8595d181b 100644 --- a/editor/js/ui/editor.js +++ b/editor/js/ui/editor.js @@ -792,8 +792,8 @@ RED.editor = (function() { var tabSelect = $("#node-config-dialog-scope").empty(); tabSelect.off("change"); - tabSelect.append(''); - tabSelect.append(''); + tabSelect.append(''); + tabSelect.append(''); RED.nodes.eachWorkspace(function(ws) { var workspaceLabel = ws.label; if (nodeUserFlows[ws.id]) { @@ -801,7 +801,7 @@ RED.editor = (function() { } tabSelect.append(''); }); - tabSelect.append(''); + tabSelect.append(''); RED.nodes.eachSubflow(function(ws) { var workspaceLabel = ws.name; if (nodeUserFlows[ws.id]) { diff --git a/locales/en-US/editor.json b/locales/en-US/editor.json index 4689cf10a..c702a527b 100644 --- a/locales/en-US/editor.json +++ b/locales/en-US/editor.json @@ -30,7 +30,7 @@ "subflows": "Subflows", "createSubflow": "Create Subflow", "selectionToSubflow": "Selection to Subflow", - "flows": "Sheets", + "flows": "Tabs", "add": "Add", "rename": "Rename", "delete": "Delete", @@ -197,9 +197,11 @@ "config": { "name": "Configuration nodes", "label": "config", - "local": "on this sheet", - "global": "on all sheets", - "none": "none" + "local": "on this flow", + "global": "on all flows", + "none": "none", + "subflows": "subflows", + "flows": "flows" } } } diff --git a/red/api/credentials.js b/red/api/credentials.js index 1bfece689..f2cc601e8 100644 --- a/red/api/credentials.js +++ b/red/api/credentials.js @@ -14,6 +14,7 @@ * limitations under the License. **/ +var log = require("../log"); var api = require("../nodes"); module.exports = { @@ -23,6 +24,7 @@ module.exports = { // registry module that knows about node types. var nodeType = req.params.type; var nodeID = req.params.id; + log.audit({event: "credentials.get",type:nodeType,id:nodeID},req); var credentials = api.getCredentials(nodeID); if (!credentials) { res.json({});