mirror of
https://github.com/discourse/discourse.git
synced 2024-11-30 04:34:13 -06:00
UX: do not default link title tag to label
This commit is contained in:
parent
d5ae7e54f9
commit
f26bd48ba0
@ -28,10 +28,9 @@ export default Ember.Component.extend({
|
||||
return '';
|
||||
},
|
||||
|
||||
@computed("title", "label")
|
||||
translatedTitle(title, label) {
|
||||
const text = title || label;
|
||||
if (text) return I18n.t(text);
|
||||
@computed("title")
|
||||
translatedTitle(title) {
|
||||
if (title) return I18n.t(title);
|
||||
},
|
||||
|
||||
click(e) {
|
||||
|
Loading…
Reference in New Issue
Block a user