Skip to content

Commit

Permalink
(js) Fix attached links in task viewer
Browse files Browse the repository at this point in the history
Fixes #3963
  • Loading branch information
cgx committed Dec 20, 2016
1 parent 3d16283 commit 596c4bb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions NEWS
Expand Up @@ -22,6 +22,7 @@ Bug fixes
- [web] fixed saving monthly recurrence rule with "by day" condition (#3948)
- [web] fixed display of message content when enabling auto-reply (#3940)
- [web] don't allow to create lists in a remote address book (not yet supported)
- [web] fixed attached links in task viewer (#3963)
- [eas] properly skip folders we don't want to synchronize (#3943)
- [eas] fixed 30 mins freebusy offset with S Planner

Expand Down
2 changes: 1 addition & 1 deletion UI/Templates/SchedulerUI/UIxTaskViewTemplate.wox
Expand Up @@ -85,7 +85,7 @@
<!-- attach urls -->
<md-list-item ng-repeat="url in ::editor.component.attachUrls">
<md-icon>link</md-icon>
<p><a ng-href="url.value" target="_new">{{url.value}}</a></p>
<p><a ng-href="{{url.value}}" target="_new">{{url.value}}</a></p>
</md-list-item>
<!-- comment -->
<md-list-item ng-show="editor.component.comment">
Expand Down

0 comments on commit 596c4bb

Please sign in to comment.