mirror of
https://github.com/FoggedLens/iD.git
synced 2026-03-13 22:56:12 +00:00
Much higher limit for text, ensure that links are separated properly. Fixes #1343
This commit is contained in:
@@ -10,10 +10,10 @@ iD.ui.Success = function(connection) {
|
||||
|
||||
var m = '';
|
||||
if (changeset.comment) {
|
||||
m = '"' + changeset.comment.substring(0, 20) + '" ';
|
||||
m = changeset.comment.substring(0, 130);
|
||||
}
|
||||
|
||||
var message = (m || 'Edited OSM!') +
|
||||
var message = (m || 'Edited OSM!') + ' ' +
|
||||
connection.changesetURL(changeset.id);
|
||||
|
||||
var links = body.append('div').attr('class','modal-actions cf');
|
||||
|
||||
Reference in New Issue
Block a user