Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions assets/js/app.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -144,9 +144,9 @@ class LicenseSuggestion
callback null, info
.fail (e) ->
if e.status == 404
callback new Error "Repository <b>#{repositoryFullName}</b> not found."
callback new Error "Repository #{repositoryFullName} not found."
else
callback new Error "Network error when trying to get information about <b>#{repositoryFullName}</b>."
callback new Error "Network error when trying to get information about #{repositoryFullName}."

# Generates a message showing that a repository is already licensed
repositoryLicense: (repositoryFullName, license) ->
Expand Down
Loading