Skip to content

Commit

Permalink
Merge pull request #5862 from chrisrueger/fix-empty-bundle-info
Browse files Browse the repository at this point in the history
Fix empty bundle info
  • Loading branch information
pkriens authored Nov 3, 2023
2 parents 644f558 + e037d8b commit 5787815
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1161,6 +1161,13 @@ private HierarchicalLabel<Action> createContextMenueCopyInfoRepoBundle(Actionabl
info.append(tooltipContent);
clipboard.copy(info.toString());
}
else {
// bundle does not seem to have a tooltip
// let's just add general bundle info
info.append(rb.toString());
clipboard.copy(info.toString());
}

} catch (Exception e) {
throw Exceptions.duck(e);
}
Expand Down

0 comments on commit 5787815

Please sign in to comment.