diff --git a/web/app/assets/javascripts/profile.js b/web/app/assets/javascripts/profile.js
index 01816475c..a7b27526b 100644
--- a/web/app/assets/javascripts/profile.js
+++ b/web/app/assets/javascripts/profile.js
@@ -619,10 +619,12 @@
for (var j = 0; j < musician.instruments.length; j++) {
var instrument = musician.instruments[j];
var inst = '/assets/content/icon_instrument_default24.png';
+ var toolTip = '';
if (instrument.instrument_id in instrument_logo_map) {
inst = instrument_logo_map[instrument.instrument_id].asset;
+ toolTip = instrument.instrument_id;
}
- instrumentLogoHtml += ' ';
+ instrumentLogoHtml += '
';
}
}
// this template is in _findSession.html.erb
@@ -632,7 +634,8 @@
avatar_url: context.JK.resolveAvatarUrl(musician.photo_url),
profile_url: "/client#/profile/" + musician.id,
musician_name: musician.name,
- instruments: instrumentLogoHtml
+ instruments: instrumentLogoHtml,
+ more_link: ''
});
}
}
diff --git a/web/app/views/clients/_hoverRecording.html.erb b/web/app/views/clients/_hoverRecording.html.erb
index 5e9dbed9a..fc8054056 100644
--- a/web/app/views/clients/_hoverRecording.html.erb
+++ b/web/app/views/clients/_hoverRecording.html.erb
@@ -22,7 +22,7 @@