revert: remove issue link support in commit list

* improve render performance
* the links in commit list are very easy to click by mistake
This commit is contained in:
leo 2024-08-13 15:58:34 +08:00
parent d601ca6b23
commit a145d6e4c3
No known key found for this signature in database
3 changed files with 4 additions and 168 deletions

View file

@ -1,7 +1,6 @@
using System;
using System.Collections;
using System.Collections.Generic;
using Avalonia.Collections;
using Avalonia.Controls;
using Avalonia.Platform.Storage;
using Avalonia.VisualTree;
@ -55,11 +54,6 @@ namespace SourceGit.ViewModels
set => SetProperty(ref _detailContext, value);
}
public AvaloniaList<Models.IssueTrackerRule> IssueTrackerRules
{
get => _repo.Settings.IssueTrackerRules;
}
public Histories(Repository repo)
{
_repo = repo;