1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Fix indents from tab to space

This commit is contained in:
Kazuhito Yokoi 2021-06-29 18:08:02 +09:00
parent f6b90c8271
commit be64603097

View File

@ -278,13 +278,13 @@
outputLabels: function(i) { outputLabels: function(i) {
var l; var l;
if (this.format === "utf8") { if (this.format === "utf8") {
l = "file.label.utf8String"; l = "file.label.utf8String";
} else if (this.format === "lines") { } else if (this.format === "lines") {
l = "file.label.utf8String_plural"; l = "file.label.utf8String_plural";
} else if (this.format === "stream") { } else if (this.format === "stream") {
l = "file.label.binaryBuffer_plural"; l = "file.label.binaryBuffer_plural";
} else { } else {
l = "file.label.binaryBuffer"; l = "file.label.binaryBuffer";
} }
return this._(l); return this._(l);
}, },