Skip to content

Commit b6daaad

Browse files
authored
Merge pull request #63 from MaximusFT/master
Fix encodingVisible in HTML template
2 parents 7fc141f + 362a02a commit b6daaad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/angular-csv-import.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ csvImport.directive('ngCsvImport', function() {
3333
'<div ng-show="headerVisible"><div class="label">Header</div>' +
3434
(material ? '<input type="checkbox" ng-model="header"></div>' :
3535
'<md-switch class="ng-csv-import-header-switch" ng-model="header"></md-switch>') +
36-
'<div ng-show="encoding"><div class="label">Encoding</div><span>{{encoding}}</span></div>'+
36+
'<div ng-show="encodingVisible"><div class="label">Encoding</div><span>{{encoding}}</span></div>'+
3737
'<div ng-show="separatorVisible">'+
3838
'<div class="label">Seperator</div>'+
3939
'<span><input class="separator-input ' + (material ? '_md md-input' : '') + ' " type="text" ng-change="changeSeparator" ng-model="separator"><span>'+

0 commit comments

Comments
 (0)