Browse Source

Fix a typo in the data-value keyword

Ben Greene 11 years ago
parent
commit
794f49d508
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/extensions/editable/bootstrap-table-editable.js

+ 1 - 1
src/extensions/editable/bootstrap-table-editable.js

@@ -42,7 +42,7 @@
                 return ['<a href="javascript:void(0)"',
                     ' data-name="' + column.field + '"',
                     ' data-pk="' + row[that.options.idField] + '"',
-                    ' data-vlaue="' + result + '"',
+                    ' data-value="' + result + '"',
                     '>' + '</a>'
                 ].join('');
             };