Skip to content

Commit

Permalink
(CS) Fix bug for new songs are sometimes not editable
Browse files Browse the repository at this point in the history
  • Loading branch information
jmrauen committed Jul 9, 2014
1 parent abbf2a9 commit dd6d61a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/churchservice/cs_songview.js
Expand Up @@ -202,7 +202,7 @@ SongView.prototype.renderEntryDetail = function(pos_id) {
rows.push('  BPM: '+arrangement.bpm);
rows.push('  Takt: '+arrangement.beat);
rows.push('<p>L&auml;nge: '+arrangement.length_min+":"+arrangement.length_sec);
rows.push('<p>Bemerkung:<br/><p><small> '+arrangement.note.htmlize()+'</small>');
rows.push('<p>Bemerkung:<br/><p><small> '+(arrangement.note!=null?arrangement.note.htmlize():"")+'</small>');
rows.push('</div>');
rows.push('<div class="span6">');

Expand Down

0 comments on commit dd6d61a

Please sign in to comment.