Skip to content

Commit 775378a

Browse files
committed
boolean value 'false' was not displayed as text from options; fixed.
1 parent 66b40a0 commit 775378a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/aha-table.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,7 @@
444444
modifiedChanged: function() {},
445445
//translate value to labels for select
446446
_translate: function(value, options, blank){
447-
if (value != "" && options) {
447+
if (value !== "" && options) {
448448
for (var i = options.length - 1; i >= 0; i--) {
449449
if (options[i].value == value) {
450450
return options[i].label;
@@ -792,4 +792,4 @@
792792
}
793793
});
794794
</script>
795-
</polymer-element>
795+
</polymer-element>

0 commit comments

Comments
 (0)